From 0bed9f170e1831f7bc2e3d48ef9d197318bc4b11 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 10:22:43 +0200 Subject: [PATCH 1/5] model changes for version, format and size addresses https://github.com/datacite/bracco/issues/324 --- app/controllers/dois/show/modify.js | 3 + app/controllers/repositories/show/dois/new.js | 5 + .../repositories/show/dois/upload.js | 3 + app/models/doi.js | 6 +- app/serializers/doi.js | 6 +- .../recording.har | 120 +++++++++--------- 6 files changed, 77 insertions(+), 66 deletions(-) diff --git a/app/controllers/dois/show/modify.js b/app/controllers/dois/show/modify.js index daed93c9e..22c74d077 100644 --- a/app/controllers/dois/show/modify.js +++ b/app/controllers/dois/show/modify.js @@ -25,6 +25,9 @@ export default Controller.extend({ } // set individual attributes to null so that they don't overwrite what is in the xml attribute + doi.set('formats', null); + doi.set('sizes', null); + doi.set('version', null); doi.set('creators', null); doi.set('titles', null); doi.set('descriptions', null); diff --git a/app/controllers/repositories/show/dois/new.js b/app/controllers/repositories/show/dois/new.js index 09c625a22..a773e3eb4 100644 --- a/app/controllers/repositories/show/dois/new.js +++ b/app/controllers/repositories/show/dois/new.js @@ -28,6 +28,11 @@ export default Controller.extend({ return !isBlank(subject.subject); })); + // // only store subject with a subject text + // doi.set('formats', A(doi.get('formats')).filter(function(format) { + // return !isBlank(format); + // })); + // only store name identifiers and affiliations with a value A(doi.get('creators')).forEach((creator) => { creator.set('nameIdentifiers', A(creator.get('nameIdentifiers')).filter(function(nameIdentifier) { diff --git a/app/controllers/repositories/show/dois/upload.js b/app/controllers/repositories/show/dois/upload.js index 0687b0bd0..274897300 100644 --- a/app/controllers/repositories/show/dois/upload.js +++ b/app/controllers/repositories/show/dois/upload.js @@ -17,6 +17,9 @@ export default Controller.extend({ // Reset content to null rather than use default values // We want the API to work out the values from the file XML + doi.set('formats', null); + doi.set('sizes', null); + doi.set('version', null); doi.set('creators', null); doi.set('titles', null); doi.set('descriptions', null); diff --git a/app/models/doi.js b/app/models/doi.js index 5e0a7e2ca..7cc7b48ef 100644 --- a/app/models/doi.js +++ b/app/models/doi.js @@ -2,7 +2,7 @@ import { computed } from '@ember/object'; import { validator, buildValidations } from 'ember-cp-validations'; import ENV from 'bracco/config/environment'; import DS from 'ember-data'; -import { fragmentArray } from 'ember-data-model-fragments/attributes'; +import { fragmentArray, array } from 'ember-data-model-fragments/attributes'; import { w } from '@ember/string'; import { A } from '@ember/array'; @@ -153,8 +153,8 @@ export default DS.Model.extend(Validations, { language: DS.attr('string'), types: DS.attr(), relatedIdentifiers: fragmentArray('relatedIdentifier', { defaultValue: [] }), - sizes: DS.attr(), - formats: DS.attr(), + sizes: array(), + formats: array(), version: DS.attr('string'), rightsList: DS.attr(), descriptions: fragmentArray('description', { defaultValue: [] }), diff --git a/app/serializers/doi.js b/app/serializers/doi.js index 4e8b2380b..5d078fea1 100644 --- a/app/serializers/doi.js +++ b/app/serializers/doi.js @@ -29,9 +29,9 @@ export default ApplicationSerializer.extend({ dates: { serialize: false }, // language: { serialize: false }, // relatedIdentifiers: { serialize: false }, - sizes: { serialize: false }, - formats: { serialize: false }, - version: { serialize: false }, + // sizes: { serialize: false }, + // formats: { serialize: false }, + // version: { serialize: false }, rightsList: { serialize: false }, // geoLocations: { serialize: false }, fundingReferences: { serialize: false }, 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 1a2f64bb5..6a792dcbe 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:23.879Z", - "time": 68, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 68 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -304,6 +244,66 @@ "ssl": -1, "wait": 289 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:15.438Z", + "time": 150, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 150 + } } ], "pages": [], From f51c4e1047dd3159a118439a645ae0b4ec16d6c4 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 10:23:14 +0200 Subject: [PATCH 2/5] components for size addresses https://github.com/datacite/bracco/issues/324 --- app/components/doi-format.js | 15 +++++++++++ app/components/doi-formats.js | 21 +++++++++++++++ app/components/doi-size.js | 27 ++++++++++++++++++++ app/components/doi-sizes.js | 21 +++++++++++++++ app/templates/components/doi-format.hbs | 14 ++++++++++ app/templates/components/doi-formats.hbs | 12 +++++++++ app/templates/components/doi-size.hbs | 13 ++++++++++ app/templates/components/doi-sizes.hbs | 12 +++++++++ app/templates/dois/show/edit.hbs | 5 ++++ app/templates/repositories/show/dois/new.hbs | 5 ++++ 10 files changed, 145 insertions(+) create mode 100644 app/components/doi-format.js create mode 100644 app/components/doi-formats.js create mode 100644 app/components/doi-size.js create mode 100644 app/components/doi-sizes.js create mode 100644 app/templates/components/doi-format.hbs create mode 100644 app/templates/components/doi-formats.hbs create mode 100644 app/templates/components/doi-size.hbs create mode 100644 app/templates/components/doi-sizes.hbs diff --git a/app/components/doi-format.js b/app/components/doi-format.js new file mode 100644 index 000000000..c2f2a3ae5 --- /dev/null +++ b/app/components/doi-format.js @@ -0,0 +1,15 @@ +import Component from '@ember/component'; +import { set } from '@ember/object'; + +export default Component.extend({ + + + actions: { + updateFormat(value) { + set(this, 'fragment', value); + }, + deleteFormat() { + this.model.get('formats').removeObject(this.fragment); + }, + }, +}); diff --git a/app/components/doi-formats.js b/app/components/doi-formats.js new file mode 100644 index 000000000..a3db5828e --- /dev/null +++ b/app/components/doi-formats.js @@ -0,0 +1,21 @@ +import Component from '@ember/component'; + +export default Component.extend({ + validationClass: null, + + didReceiveAttrs() { + this._super(...arguments); + + if (!this.model.get('formats')) { + this.model.set('formats', []); + } + if (this.model.get('formats').length == 0) { + this.model.get('formats').pushObject(); + } + }, + actions: { + addFormat() { + this.model.get('formats').pushObject(); + }, + }, +}); diff --git a/app/components/doi-size.js b/app/components/doi-size.js new file mode 100644 index 000000000..9c42dbd1e --- /dev/null +++ b/app/components/doi-size.js @@ -0,0 +1,27 @@ +import Component from '@ember/component'; +// import { set } from '@ember/object'; + +export default Component.extend({ + + updateSize(size) { + this.set('fragment', size); + }, + actions: { + updateSize(value) { + // let self = this.get('fragment').objectAt(0); + console.log(value); + console.log('ALPHA'); + console.log(this.fragment); + console.log(this.attrs); + console.log(this.attributeBindings); + // set(this, 'fragment', value); + // this.fragment = value; + // this.fragment.set(value); + // this.set('fragment', value); + this.updateSize(value); + }, + deleteSize() { + this.model.get('sizes').removeObject(this.fragment); + }, + }, +}); diff --git a/app/components/doi-sizes.js b/app/components/doi-sizes.js new file mode 100644 index 000000000..4428173ee --- /dev/null +++ b/app/components/doi-sizes.js @@ -0,0 +1,21 @@ +import Component from '@ember/component'; + +export default Component.extend({ + validationClass: null, + + didReceiveAttrs() { + this._super(...arguments); + + if (!this.model.get('sizes')) { + this.model.set('sizes', []); + } + if (this.model.get('sizes').length == 0) { + this.model.get('sizes').pushObject(); + } + }, + actions: { + addSize() { + this.model.get('sizes').pushObject(); + }, + }, +}); diff --git a/app/templates/components/doi-format.hbs b/app/templates/components/doi-format.hbs new file mode 100644 index 000000000..f8904600a --- /dev/null +++ b/app/templates/components/doi-format.hbs @@ -0,0 +1,14 @@ + + +{{#if (gt index 0)}} +
+ + + {{fa-icon "trash" pull="left" style="margin:0;"}} + +
+{{else}} + +{{/if}} +
Technical format of the resource.
+
\ No newline at end of file diff --git a/app/templates/components/doi-formats.hbs b/app/templates/components/doi-formats.hbs new file mode 100644 index 000000000..872e0d95a --- /dev/null +++ b/app/templates/components/doi-formats.hbs @@ -0,0 +1,12 @@ +
+ +
+ {{#each model.formats as |format index|}} + + {{/each}} + + {{#if (or (not model.formats) (lte model.formats.length 5))}} + {{fa-icon "plus"}} Add {{if (gt model.formats.length 0) "another "}}format + {{/if}} +
+
diff --git a/app/templates/components/doi-size.hbs b/app/templates/components/doi-size.hbs new file mode 100644 index 000000000..f2a66194d --- /dev/null +++ b/app/templates/components/doi-size.hbs @@ -0,0 +1,13 @@ + +{{#if (gt index 0)}} +
+ + + {{fa-icon "trash" pull="left" style="margin:0;"}} + +
+{{else}} + +{{/if}} +
Size (e.g. bytes, pages, inches, etc.) or duration (extent), e.g. hours, minutes, days, etc., of a resource.
+
\ No newline at end of file diff --git a/app/templates/components/doi-sizes.hbs b/app/templates/components/doi-sizes.hbs new file mode 100644 index 000000000..2fee0910c --- /dev/null +++ b/app/templates/components/doi-sizes.hbs @@ -0,0 +1,12 @@ +
+ +
+ {{#each model.sizes as |size index|}} + + {{/each}} + + {{#if (or (not model.sizes) (lte model.sizes.length 5))}} + {{fa-icon "plus"}} Add {{if (gt model.sizes.length 0) "another "}}size + {{/if}} +
+
diff --git a/app/templates/dois/show/edit.hbs b/app/templates/dois/show/edit.hbs index 25d66cc07..5ee18ae1f 100644 --- a/app/templates/dois/show/edit.hbs +++ b/app/templates/dois/show/edit.hbs @@ -30,6 +30,11 @@ {{#if (feature-flag 'optionalFields')}} + + + + + diff --git a/app/templates/repositories/show/dois/new.hbs b/app/templates/repositories/show/dois/new.hbs index 3192650f9..d91f7a1d9 100644 --- a/app/templates/repositories/show/dois/new.hbs +++ b/app/templates/repositories/show/dois/new.hbs @@ -22,6 +22,11 @@ {{#if (feature-flag 'optionalFields')}} + + + + + From 22c11fb22a47df4b4eb1ebd29040f0cf93a2cc7e Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 10:23:27 +0200 Subject: [PATCH 3/5] tests addresses https://github.com/datacite/bracco/issues/324 --- .../recording.har | 565 ++++++++++++++++++ .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../is-logged-in_3542225560/recording.har | 120 ++-- .../visiting-homepage_882376104/recording.har | 120 ++-- .../visiting-info_3527359880/recording.har | 120 ++-- .../visiting-members_3369106031/recording.har | 120 ++-- .../recording.har | 120 ++-- .../visiting-prefixes_435827572/recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../new-provider-form_32901344/recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../visiting-dois_3774702605/recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../recording.har | 120 ++-- .../visiting-users_37556140/recording.har | 120 ++-- tests/acceptance/client_admin/doi-test.js | 14 + tests/acceptance/staff_admin/doi-test.js | 10 +- tests/factories/doi.js | 3 + .../integration/components/doi-format-test.js | 18 + .../components/doi-formats-test.js | 34 ++ tests/integration/components/doi-size-test.js | 18 + .../integration/components/doi-sizes-test.js | 34 ++ 48 files changed, 3094 insertions(+), 2402 deletions(-) create mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-format-version-and-size_455109108/recording.har create mode 100644 tests/integration/components/doi-format-test.js create mode 100644 tests/integration/components/doi-formats-test.js create mode 100644 tests/integration/components/doi-size-test.js create mode 100644 tests/integration/components/doi-sizes-test.js 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 new file mode 100644 index 000000000..05c4f0ef1 --- /dev/null +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-format-version-and-size_455109108/recording.har @@ -0,0 +1,565 @@ +{ + "log": { + "_recordingName": "Acceptance | client_admin | doi/visiting the Form and adding format, version and size", + "browser": { + "name": "Chrome", + "version": "80.0.3987.149" + }, + "creator": { + "comment": "persister:rest", + "name": "Polly.JS", + "version": "4.0.2" + }, + "entries": [ + { + "_id": "6e5d562e2a25dba1010fc82e137b4470", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 66, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 724, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 724, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:10:49.379Z", + "time": 837, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 837 + } + }, + { + "_id": "7d125f9523d362fc0090fd7db02f5cff", + "_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": 990, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "focus-area", + "value": "" + }, + { + "name": "include-deleted", + "value": "" + }, + { + "name": "member-type", + "value": "" + }, + { + "name": "non-profit-status", + "value": "" + }, + { + "name": "organization-type", + "value": "" + }, + { + "name": "page", + "value": { + "number": "1", + "size": "25" + } + }, + { + "name": "query", + "value": "" + }, + { + "name": "region", + "value": "" + }, + { + "name": "size", + "value": "25" + }, + { + "name": "sort", + "value": "" + }, + { + "name": "year", + "value": "" + } + ], + "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": 57034, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 57034, + "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\":null,\"region\":null,\"country\":null,\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/318/data.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-03-03T10:39:10.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\":\"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\":\"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\"}]}}},{\"id\":\"cadmore\",\"type\":\"providers\",\"attributes\":{\"name\":\"Cadmore Media\",\"displayName\":\"Cadmore Media\",\"symbol\":\"CADMORE\",\"website\":\"https://cadmore.media/about\",\"systemEmail\":\"violaine@cadmore.media\",\"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\":\"2019-06-21T15:00:59.000Z\",\"updated\":\"2019-06-21T15:27:11.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.24431\",\"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\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/000/111/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\"}]}}}],\"meta\":{\"total\":392,\"totalPages\":16,\"page\":1,\"years\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":14},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2020\",\"title\":\"2020\",\"count\":88}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":116},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":51},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":239},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":132},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":20},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":59},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":21},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":7},{\"id\":\"other\",\"title\":\"Other\",\"count\":2}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":47},{\"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\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":2},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":385},{\"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": [ + { + "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-03-30T08:10:50.270Z", + "time": 395, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 395 + } + }, + { + "_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": 872, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "include", + "value": "provider" + } + ], + "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" + }, + "response": { + "bodySize": 5946, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 5946, + "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\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-03-19T09:34:22.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\":5,\"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-03-30T08:10:50.684Z", + "time": 290, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 290 + } + }, + { + "_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": 841, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://api.test.datacite.org/providers/dc" + }, + "response": { + "bodySize": 1611, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1611, + "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-03-30T05:43:20.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\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":18}}" + }, + "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-03-30T08:10:51.019Z", + "time": 297, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 297 + } + }, + { + "_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": 196, + "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-03-30T08:10:51.707Z", + "time": 189, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 189 + } + }, + { + "_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": 137, + "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-03-30T08:10:51.922Z", + "time": 120, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 120 + } + }, + { + "_id": "1f2ed9b690e18a122e621204614c336f", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 821, + "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/52xz-gt66\"]}" + }, + "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-03-30T08:10:51.922Z", + "time": 195, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 195 + } + }, + { + "_id": "077ad9a069f3a6196a3ca4d79e7bebd5", + "_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": 153, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/52xz-gt66" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F52xz-gt66" + }, + "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%2F52xz-gt66\"}}" + }, + "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-03-30T08:10:52.139Z", + "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-staff_admin-admin_3109760735/editing-admin-form_2071293154/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-form_2071293154/recording.har index d844448bd..d8a5781b9 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:24.479Z", - "time": 290, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 290 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -236,6 +176,66 @@ "ssl": -1, "wait": 157 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:35.843Z", + "time": 98, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 98 + } } ], "pages": [], 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 d7b0940f1..978c2bc02 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:26.032Z", - "time": 334, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 334 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -236,6 +176,66 @@ "ssl": -1, "wait": 319 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:37.126Z", + "time": 83, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 83 + } } ], "pages": [], 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 55053bfa7..bfdd71818 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:20.047Z", - "time": 70, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 70 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -236,6 +176,66 @@ "ssl": -1, "wait": 96 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:31.981Z", + "time": 107, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 107 + } } ], "pages": [], 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 e658b37c1..29b14318a 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:21.379Z", - "time": 91, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 91 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -236,6 +176,66 @@ "ssl": -1, "wait": 78 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:33.293Z", + "time": 81, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 81 + } } ], "pages": [], 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 74fd9fbfe..ad0bc8d94 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:22.760Z", - "time": 83, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 83 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -295,6 +235,66 @@ "ssl": -1, "wait": 609 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:34.555Z", + "time": 140, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 140 + } } ], "pages": [], 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 141b09945..ea45ee4c0 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:27.591Z", - "time": 210, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 210 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -177,6 +117,66 @@ "ssl": -1, "wait": 236 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:38.376Z", + "time": 134, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 134 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-prefix-10-80225_953924240/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-prefix-10-80225_953924240/recording.har index 34508c02d..cd25ebd33 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-prefix-10-80225_953924240/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-prefix-10-80225_953924240/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:31.379Z", - "time": 69, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 69 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -177,6 +117,66 @@ "ssl": -1, "wait": 163 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:42.100Z", + "time": 122, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 122 + } } ], "pages": [], 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 649649983..32dfa1029 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:29.871Z", - "time": 72, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 72 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -276,6 +216,66 @@ "ssl": -1, "wait": 424 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:40.550Z", + "time": 375, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 375 + } } ], "pages": [], 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 51e2bf43f..87eea6726 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:28.537Z", - "time": 76, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 76 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -288,6 +228,66 @@ "ssl": -1, "wait": 185 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:39.221Z", + "time": 153, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 153 + } } ], "pages": [], 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 c65a5f621..5b2cf5137 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:51.166Z", - "time": 106, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 106 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -241,6 +181,66 @@ "ssl": -1, "wait": 106 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:59.723Z", + "time": 295, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 295 + } } ], "pages": [], 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 044cfce26..db6e8faf8 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:49.565Z", - "time": 73, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 73 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -360,6 +300,66 @@ "ssl": -1, "wait": 93 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:58.433Z", + "time": 110, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 110 + } } ], "pages": [], 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 35fe3221e..2ec4505f8 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:48.256Z", - "time": 78, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 78 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -241,6 +181,66 @@ "ssl": -1, "wait": 110 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:57.205Z", + "time": 76, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 76 + } } ], "pages": [], 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 772a84895..97ceffc4a 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:46.895Z", - "time": 83, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 83 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -348,6 +288,66 @@ "ssl": -1, "wait": 96 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:55.496Z", + "time": 547, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 547 + } } ], "pages": [], 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 0bed844d9..7bb33ea4e 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:10.138Z", - "time": 79, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 79 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -241,6 +181,66 @@ "ssl": -1, "wait": 83 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:02.383Z", + "time": 92, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 92 + } } ], "pages": [], 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 8c988ebe4..c48bd0e59 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:06.996Z", - "time": 81, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 81 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -241,6 +181,66 @@ "ssl": -1, "wait": 90 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:20:59.655Z", + "time": 116, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 116 + } } ], "pages": [], 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 80b4d3980..4ff0397da 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:08.798Z", - "time": 74, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 74 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -241,6 +181,66 @@ "ssl": -1, "wait": 84 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:00.941Z", + "time": 291, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 291 + } } ], "pages": [], 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 f07ecd17b..dc9068cf9 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:05.525Z", - "time": 74, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 74 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -296,6 +236,66 @@ "ssl": -1, "wait": 75 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:20:58.199Z", + "time": 216, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 216 + } } ], "pages": [], 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 606571aab..550feaae9 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:56.559Z", - "time": 76, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 76 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -300,6 +240,66 @@ "ssl": -1, "wait": 128 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:13:05.022Z", + "time": 90, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 90 + } } ], "pages": [], 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 04530d566..670541366 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:53.858Z", - "time": 75, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 75 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -241,6 +181,66 @@ "ssl": -1, "wait": 199 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:13:02.463Z", + "time": 84, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 84 + } } ], "pages": [], 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 5ab127e90..839139a36 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:59.264Z", - "time": 264, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 264 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -1564,6 +1504,66 @@ "ssl": -1, "wait": 863 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:13:08.058Z", + "time": 160, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 160 + } } ], "pages": [], 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 5284882ee..de950e778 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:55.227Z", - "time": 81, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 81 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -300,6 +240,66 @@ "ssl": -1, "wait": 156 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:13:03.714Z", + "time": 141, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 141 + } } ], "pages": [], 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 144cd482b..843ca0090 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:57.882Z", - "time": 78, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 78 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -348,6 +288,66 @@ "ssl": -1, "wait": 171 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:13:06.270Z", + "time": 652, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 652 + } } ], "pages": [], 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 9b5348036..64d253829 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:52.496Z", - "time": 87, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 87 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -241,6 +181,66 @@ "ssl": -1, "wait": 87 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:13:01.206Z", + "time": 97, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 97 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/creating-a-new-DOI-for-repository-DataCite-Test-renders_4230827356/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/creating-a-new-DOI-for-repository-DataCite-Test-renders_4230827356/recording.har index ca9f42cca..e7bceacad 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/creating-a-new-DOI-for-repository-DataCite-Test-renders_4230827356/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/creating-a-new-DOI-for-repository-DataCite-Test-renders_4230827356/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:45.085Z", - "time": 77, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 77 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -557,6 +497,66 @@ "ssl": -1, "wait": 88 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:54.224Z", + "time": 88, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 88 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/edit-DOI-form-for-repository-DataCite-Test_3782808575/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/edit-DOI-form-for-repository-DataCite-Test_3782808575/recording.har index 32ac33ab5..7f5b91cbd 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/edit-DOI-form-for-repository-DataCite-Test_3782808575/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/edit-DOI-form-for-repository-DataCite-Test_3782808575/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:41.814Z", - "time": 74, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 74 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -423,6 +363,66 @@ "ssl": -1, "wait": 95 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:51.551Z", + "time": 88, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 88 + } } ], "pages": [], 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 31c2dced1..029eb8f0f 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:18.544Z", - "time": 86, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 86 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -300,6 +240,66 @@ "ssl": -1, "wait": 112 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:10.404Z", + "time": 80, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 80 + } } ], "pages": [], 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 9814ef2be..7214d8fae 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:21.165Z", - "time": 84, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 84 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -300,6 +240,66 @@ "ssl": -1, "wait": 119 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:12.912Z", + "time": 97, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 97 + } } ], "pages": [], 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 0f0316ace..96c9826af 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:19.850Z", - "time": 71, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 71 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -300,6 +240,66 @@ "ssl": -1, "wait": 111 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:11.665Z", + "time": 81, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 81 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/modify-DOI-form-for-repository-DataCite-Test_2670435897/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/modify-DOI-form-for-repository-DataCite-Test_2670435897/recording.har index 1bde3396d..c199c11ac 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/modify-DOI-form-for-repository-DataCite-Test_2670435897/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/modify-DOI-form-for-repository-DataCite-Test_2670435897/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:43.694Z", - "time": 83, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 83 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -483,6 +423,66 @@ "ssl": -1, "wait": 87 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:52.921Z", + "time": 133, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 133 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/new-DOI-form-for-repository-Test_2069099802/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/new-DOI-form-for-repository-Test_2069099802/recording.har index c8dbb61cc..86e372470 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/new-DOI-form-for-repository-Test_2069099802/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/new-DOI-form-for-repository-Test_2069099802/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-23T15:15:29.075Z", - "time": 77, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 77 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -557,6 +497,66 @@ "ssl": -1, "wait": 72 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:48.474Z", + "time": 646, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 646 + } } ], "pages": [], 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 9ee0da141..58b2cf4d5 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:17.091Z", - "time": 89, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 89 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -360,6 +300,66 @@ "ssl": -1, "wait": 76 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:09.112Z", + "time": 94, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 94 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/upload-DOI-form-for-repository-DataCite-Test_3845662214/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/upload-DOI-form-for-repository-DataCite-Test_3845662214/recording.har index 62564abad..e71c30ac8 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/upload-DOI-form-for-repository-DataCite-Test_3845662214/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/upload-DOI-form-for-repository-DataCite-Test_3845662214/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:40.302Z", - "time": 69, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 69 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -557,6 +497,66 @@ "ssl": -1, "wait": 93 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:50.298Z", + "time": 79, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 79 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-dois-with-click_2698816535/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-dois-with-click_2698816535/recording.har index da988587b..93dca131c 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-dois-with-click_2698816535/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-dois-with-click_2698816535/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:35.531Z", - "time": 73, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 73 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -507,6 +447,66 @@ "ssl": -1, "wait": 199 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:44.771Z", + "time": 712, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 712 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-dois_3774702605/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-dois_3774702605/recording.har index 770a43741..6460412c5 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-dois_3774702605/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-dois_3774702605/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:32.743Z", - "time": 75, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 75 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -320,6 +260,66 @@ "ssl": -1, "wait": 1335 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:43.374Z", + "time": 153, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 153 + } } ], "pages": [], 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 cf1067089..b82291dcf 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:15.558Z", - "time": 82, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 82 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -439,6 +379,66 @@ "ssl": -1, "wait": 104 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:07.830Z", + "time": 85, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 85 + } } ], "pages": [], 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 6f1c53cbb..9a337ffe3 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:12.846Z", - "time": 74, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 74 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -423,6 +363,66 @@ "ssl": -1, "wait": 133 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:05.292Z", + "time": 94, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 94 + } } ], "pages": [], 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 382641e0b..def5a9860 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:14.204Z", - "time": 76, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 76 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -509,6 +449,66 @@ "ssl": -1, "wait": 398 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:06.565Z", + "time": 88, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 88 + } } ], "pages": [], 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 b824b9be5..296fb527f 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:11.489Z", - "time": 94, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 94 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -300,6 +240,66 @@ "ssl": -1, "wait": 101 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:03.629Z", + "time": 503, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 503 + } } ], "pages": [], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-specific-doi_4109340652/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-specific-doi_4109340652/recording.har index 6ae6f2689..e5e1df189 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-specific-doi_4109340652/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-specific-doi_4109340652/recording.har @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:09:38.891Z", - "time": 77, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 77 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -423,6 +363,66 @@ "ssl": -1, "wait": 231 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:12:47.223Z", + "time": 83, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 83 + } } ], "pages": [], 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 500dac72a..693a5dcd3 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 @@ -11,66 +11,6 @@ "version": "4.0.2" }, "entries": [ - { - "_id": "25539dcf1fed1e0ea2c75ccd217e0120", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 54, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/x-www-form-urlencoded;charset=utf-8" - } - ], - "headersSize": 116, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded;charset=utf-8", - "params": [], - "text": "INFORMATION_HIDDEN" - }, - "queryString": [], - "url": "https://api.test.datacite.org/token" - }, - "response": { - "bodySize": 582, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 582, - "text": "INFORMATION_HIDDEN" - }, - "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-03-22T17:10:22.500Z", - "time": 79, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 79 - } - }, { "_id": "7d125f9523d362fc0090fd7db02f5cff", "_order": 0, @@ -264,6 +204,66 @@ "ssl": -1, "wait": 120 } + }, + { + "_id": "17a82989ef17502da5abb1cddde35be4", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 58, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/x-www-form-urlencoded;charset=utf-8" + } + ], + "headersSize": 116, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/x-www-form-urlencoded;charset=utf-8", + "params": [], + "text": "INFORMATION_HIDDEN" + }, + "queryString": [], + "url": "https://api.test.datacite.org/token" + }, + "response": { + "bodySize": 582, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 582, + "text": "INFORMATION_HIDDEN" + }, + "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-03-30T08:21:14.198Z", + "time": 83, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 83 + } } ], "pages": [], diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index 6e5b7c2bc..d26d38264 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -127,6 +127,20 @@ module('Acceptance | client_admin | doi', function(hooks) { assert.dom('[doi-contributor]').includesText('DataCollector'); }); + test('visiting the Form and adding format, version and size', async function(assert) { + + await visit('repositories/datacite.test/dois/new'); + await fillIn('[data-test-format]','json'); + await fillIn('[data-test-size]','5kb'); + // await fillIn('[data-test-version]','67'); + + // // NOTE: fillIn matches with hasValue but not with includesText + assert.equal(currentURL(), 'repositories/datacite.test/dois/new'); + assert.dom('[data-test-format]').hasValue('json'); + assert.dom('[data-test-size]').hasValue('5kb'); + // assert.dom('[data-test-version]').hasValue('67'); + }); + test('visiting the Form and adding Alternate Identfier', async function(assert) { await visit('repositories/datacite.test/dois/new'); diff --git a/tests/acceptance/staff_admin/doi-test.js b/tests/acceptance/staff_admin/doi-test.js index c6a33ceab..eba35c27f 100644 --- a/tests/acceptance/staff_admin/doi-test.js +++ b/tests/acceptance/staff_admin/doi-test.js @@ -101,7 +101,7 @@ module('Acceptance | staff_admin | repository', function(hooks) { // }); test('new DOI form for repository Test', async function(assert) { - assert.expect(19); + assert.expect(22); await visit('/repositories/datacite.test/dois/new'); @@ -127,6 +127,9 @@ module('Acceptance | staff_admin | repository', function(hooks) { assert.dom('[doi-contributor]').exists(); assert.dom('[data-test-alternate-identifier]').exists(); assert.dom('[data-test-related-identifier]').exists(); + assert.dom('[data-test-version]').exists(); + assert.dom('[data-test-format]').exists(); + assert.dom('[data-test-size]').exists(); // assert.equal(currentURL(), '/repositories/datacite.test/dois/new'); // assert.dom('input#suffix-field').exists(); @@ -171,7 +174,7 @@ module('Acceptance | staff_admin | repository', function(hooks) { }); test('edit DOI form for repository DataCite Test', async function(assert) { - assert.expect(19); + assert.expect(20); await visit('/dois/10.80225%2Fda52-7919/edit'); @@ -198,6 +201,9 @@ module('Acceptance | staff_admin | repository', function(hooks) { assert.dom('[data-test-alternate-identifier]').exists(); assert.dom('[data-test-related-identifier]').exists(); // assert.dom('[data-test-related-metadata-scheme]').exists(); + assert.dom('[data-test-version]').exists(); + // assert.dom('[data-test-format]').exists(); + // assert.dom('[data-test-size]').exists(); assert.dom('button#doi-update').exists(); diff --git a/tests/factories/doi.js b/tests/factories/doi.js index 2d4285ce3..be16a4e39 100644 --- a/tests/factories/doi.js +++ b/tests/factories/doi.js @@ -27,6 +27,9 @@ FactoryGuy.define('doi', { updated: '2017-09-27T14:08:02.000Z', language: 'en', downloadCount: 4, + sizes: [ '1 page', '500kb' ], + formats: [ 'html', 'word' ], + version: '7', viewCount: 111111, citationCount: 123, repository: FactoryGuy.belongsTo('repository'), diff --git a/tests/integration/components/doi-format-test.js b/tests/integration/components/doi-format-test.js new file mode 100644 index 000000000..c472bd0f5 --- /dev/null +++ b/tests/integration/components/doi-format-test.js @@ -0,0 +1,18 @@ +import { module, test } from 'qunit'; +import { setupRenderingTest } from 'ember-qunit'; +import { render } from '@ember/test-helpers'; +import hbs from 'htmlbars-inline-precompile'; +// import { selectChoose } from 'ember-power-select/test-support'; +import { setupFactoryGuy, make } from 'ember-data-factory-guy'; + +module('Integration | Component | doi size', function(hooks) { + setupRenderingTest(hooks); + setupFactoryGuy(hooks); + + test('it renders', async function(assert) { + this.set('model', make('doi')); + await render(hbs`{{doi-size model=model fragment=fragment index=0}}`); + + assert.dom('*').hasText('Identifiers of related resources. These must be globally unique identifiers. Visit our support website for the list of supported unique identifiers. Related Identifier Type Relation Type'); + }); +}); diff --git a/tests/integration/components/doi-formats-test.js b/tests/integration/components/doi-formats-test.js new file mode 100644 index 000000000..22091390c --- /dev/null +++ b/tests/integration/components/doi-formats-test.js @@ -0,0 +1,34 @@ +import { module, test } from 'qunit'; +import { setupRenderingTest } from 'ember-qunit'; +import { setupFactoryGuy, make } from 'ember-data-factory-guy'; +import { render, fillIn, click } from '@ember/test-helpers'; +import hbs from 'htmlbars-inline-precompile'; + +module('Integration | Component | doi formats', function(hooks) { + setupRenderingTest(hooks); + setupFactoryGuy(hooks); + + test('it renders', async function(assert) { + this.set('model', make('doi')); + await render(hbs`{{doi-formats model=model}}`); + await click('#add-format'); + let formats = this.element.querySelectorAll('input.format-field'); + + await fillIn(formats[0], 'doc/xml'); + assert.dom(formats[0]).hasValue('doc/xml'); + }); + + test('add multiple values', async function(assert) { + this.set('model', make('doi')); + await render(hbs`{{doi-formats model=model}}`); + await click('#add-format'); + await click('#add-format'); + let formats = this.element.querySelectorAll('input.format-field'); + + await fillIn(formats[0], 'jpeg'); + await fillIn(formats[1], 'png'); + + assert.dom(formats[0]).hasValue('jpeg'); + assert.dom(formats[1]).hasValue('png'); + }); +}); diff --git a/tests/integration/components/doi-size-test.js b/tests/integration/components/doi-size-test.js new file mode 100644 index 000000000..c472bd0f5 --- /dev/null +++ b/tests/integration/components/doi-size-test.js @@ -0,0 +1,18 @@ +import { module, test } from 'qunit'; +import { setupRenderingTest } from 'ember-qunit'; +import { render } from '@ember/test-helpers'; +import hbs from 'htmlbars-inline-precompile'; +// import { selectChoose } from 'ember-power-select/test-support'; +import { setupFactoryGuy, make } from 'ember-data-factory-guy'; + +module('Integration | Component | doi size', function(hooks) { + setupRenderingTest(hooks); + setupFactoryGuy(hooks); + + test('it renders', async function(assert) { + this.set('model', make('doi')); + await render(hbs`{{doi-size model=model fragment=fragment index=0}}`); + + assert.dom('*').hasText('Identifiers of related resources. These must be globally unique identifiers. Visit our support website for the list of supported unique identifiers. Related Identifier Type Relation Type'); + }); +}); diff --git a/tests/integration/components/doi-sizes-test.js b/tests/integration/components/doi-sizes-test.js new file mode 100644 index 000000000..f3f056b14 --- /dev/null +++ b/tests/integration/components/doi-sizes-test.js @@ -0,0 +1,34 @@ +import { module, test } from 'qunit'; +import { setupRenderingTest } from 'ember-qunit'; +import { setupFactoryGuy, make } from 'ember-data-factory-guy'; +import { render, fillIn, click } from '@ember/test-helpers'; +import hbs from 'htmlbars-inline-precompile'; + +module('Integration | Component | doi sizes', function(hooks) { + setupRenderingTest(hooks); + setupFactoryGuy(hooks); + + test('it renders', async function(assert) { + this.set('model', make('doi')); + await render(hbs`{{doi-sizes model=model}}`); + await click('#add-size'); + let sizes = this.element.querySelectorAll('input.size-field'); + + await fillIn(sizes[0], '3 pages'); + assert.dom(sizes[0]).hasValue('3 pages'); + }); + + test('add multiple values', async function(assert) { + this.set('model', make('doi')); + await render(hbs`{{doi-sizes model=model}}`); + await click('#add-size'); + await click('#add-size'); + let sizes = this.element.querySelectorAll('input.size-field'); + + await fillIn(sizes[0], '5kb'); + await fillIn(sizes[1], '2 files'); + + assert.dom(sizes[0]).hasValue('5kb'); + assert.dom(sizes[1]).hasValue('2 files'); + }); +}); From e935fa09525da11a7e06a4195b9b0381b966d2f0 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 10:43:43 +0200 Subject: [PATCH 4/5] tests adjustments --- tests/integration/components/doi-format-test.js | 6 +++--- tests/integration/components/doi-list-test.js | 2 +- tests/integration/components/doi-size-test.js | 7 ++++--- tests/integration/components/doi-summary-test.js | 2 +- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/tests/integration/components/doi-format-test.js b/tests/integration/components/doi-format-test.js index c472bd0f5..227aabf17 100644 --- a/tests/integration/components/doi-format-test.js +++ b/tests/integration/components/doi-format-test.js @@ -5,14 +5,14 @@ import hbs from 'htmlbars-inline-precompile'; // import { selectChoose } from 'ember-power-select/test-support'; import { setupFactoryGuy, make } from 'ember-data-factory-guy'; -module('Integration | Component | doi size', function(hooks) { +module('Integration | Component | doi format', function(hooks) { setupRenderingTest(hooks); setupFactoryGuy(hooks); test('it renders', async function(assert) { this.set('model', make('doi')); - await render(hbs`{{doi-size model=model fragment=fragment index=0}}`); + await render(hbs`{{doi-format model=model fragment=fragment index=0}}`); - assert.dom('*').hasText('Identifiers of related resources. These must be globally unique identifiers. Visit our support website for the list of supported unique identifiers. Related Identifier Type Relation Type'); + assert.dom('*').hasText('Format (optional) Technical format of the resource.'); }); }); diff --git a/tests/integration/components/doi-list-test.js b/tests/integration/components/doi-list-test.js index 9fe9faa76..df9a2363b 100644 --- a/tests/integration/components/doi-list-test.js +++ b/tests/integration/components/doi-list-test.js @@ -15,7 +15,7 @@ module('Integration | Component | doi-list', function(hooks) { // assert.dom('[data-test-doi]').hasText(this.model[0].doi); assert.dom('[data-test-resource-type-general]').hasText('Dataset'); - assert.dom('[data-test-metadata]').hasText('Substance published 2017 via Royal Society of Chemistry'); + assert.dom('[data-test-metadata]').hasText('Version 7 of Substance published 2017 via Royal Society of Chemistry'); assert.dom('[data-test-created]').hasText('Created September 27, 2017, 14:08:02 UTC. Findable'); assert.dom('[data-test-identifier]').hasText('https://handle.test.datacite.org/' + this.model[0].doi); }); diff --git a/tests/integration/components/doi-size-test.js b/tests/integration/components/doi-size-test.js index c472bd0f5..8620bfa68 100644 --- a/tests/integration/components/doi-size-test.js +++ b/tests/integration/components/doi-size-test.js @@ -2,7 +2,7 @@ import { module, test } from 'qunit'; import { setupRenderingTest } from 'ember-qunit'; import { render } from '@ember/test-helpers'; import hbs from 'htmlbars-inline-precompile'; -// import { selectChoose } from 'ember-power-select/test-support'; +// import { pauseTest } from 'ember-power-select/test-support'; import { setupFactoryGuy, make } from 'ember-data-factory-guy'; module('Integration | Component | doi size', function(hooks) { @@ -11,8 +11,9 @@ module('Integration | Component | doi size', function(hooks) { test('it renders', async function(assert) { this.set('model', make('doi')); - await render(hbs`{{doi-size model=model fragment=fragment index=0}}`); + await render(hbs`{{doi-size model=model fragment="5kb" index=0}}`); + // await pauseTest(); - assert.dom('*').hasText('Identifiers of related resources. These must be globally unique identifiers. Visit our support website for the list of supported unique identifiers. Related Identifier Type Relation Type'); + assert.dom('*').hasText('Size (optional) Size (e.g. bytes, pages, inches, etc.) or duration (extent), e.g. hours, minutes, days, etc., of a resource.'); }); }); diff --git a/tests/integration/components/doi-summary-test.js b/tests/integration/components/doi-summary-test.js index ef5511afd..df57e9705 100644 --- a/tests/integration/components/doi-summary-test.js +++ b/tests/integration/components/doi-summary-test.js @@ -14,7 +14,7 @@ module('Integration | Component | doi summary', function(hooks) { assert.dom('[data-test-doi]').hasText('10.80225/rph240519'); assert.dom('[data-test-resource-type-general]').hasText('Dataset'); - assert.dom('[data-test-metadata]').hasText('Substance published 2017 via Royal Society of Chemistry'); + assert.dom('[data-test-metadata]').hasText('Version 7 of Substance published 2017 via Royal Society of Chemistry'); }); test('it renders citations', async function(assert) { From d63de294dcfb4f2c1365016dbbf1330e74c28d8b Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 14:37:33 +0200 Subject: [PATCH 5/5] using onblur for size and formats --- app/components/doi-format.js | 10 ++++++---- app/components/doi-size.js | 19 +++++-------------- app/templates/components/doi-format.hbs | 4 ++-- app/templates/components/doi-size.hbs | 4 ++-- 4 files changed, 15 insertions(+), 22 deletions(-) diff --git a/app/components/doi-format.js b/app/components/doi-format.js index c2f2a3ae5..cdc50744a 100644 --- a/app/components/doi-format.js +++ b/app/components/doi-format.js @@ -1,15 +1,17 @@ import Component from '@ember/component'; -import { set } from '@ember/object'; export default Component.extend({ - actions: { updateFormat(value) { - set(this, 'fragment', value); + this.set('fragment', value); + }, + selectFormat() { + console.log(this.fragment); + this.model.get('formats').replace(this.index, 1, [ this.fragment ]); }, deleteFormat() { - this.model.get('formats').removeObject(this.fragment); + this.model.get('formats').removeAt(this.index); }, }, }); diff --git a/app/components/doi-size.js b/app/components/doi-size.js index 9c42dbd1e..ee7c95085 100644 --- a/app/components/doi-size.js +++ b/app/components/doi-size.js @@ -3,25 +3,16 @@ import Component from '@ember/component'; export default Component.extend({ - updateSize(size) { - this.set('fragment', size); - }, actions: { updateSize(value) { - // let self = this.get('fragment').objectAt(0); - console.log(value); - console.log('ALPHA'); + this.set('fragment', value); + }, + selectSize() { console.log(this.fragment); - console.log(this.attrs); - console.log(this.attributeBindings); - // set(this, 'fragment', value); - // this.fragment = value; - // this.fragment.set(value); - // this.set('fragment', value); - this.updateSize(value); + this.model.get('sizes').replace(this.index, 1, [ this.fragment ]); }, deleteSize() { - this.model.get('sizes').removeObject(this.fragment); + this.model.get('sizes').removeAt(this.index); }, }, }); diff --git a/app/templates/components/doi-format.hbs b/app/templates/components/doi-format.hbs index f8904600a..6272d72f3 100644 --- a/app/templates/components/doi-format.hbs +++ b/app/templates/components/doi-format.hbs @@ -2,13 +2,13 @@ {{#if (gt index 0)}}
- + {{fa-icon "trash" pull="left" style="margin:0;"}}
{{else}} - + {{/if}}
Technical format of the resource.

\ No newline at end of file diff --git a/app/templates/components/doi-size.hbs b/app/templates/components/doi-size.hbs index f2a66194d..62ac746bd 100644 --- a/app/templates/components/doi-size.hbs +++ b/app/templates/components/doi-size.hbs @@ -1,13 +1,13 @@ {{#if (gt index 0)}}
- + {{fa-icon "trash" pull="left" style="margin:0;"}}
{{else}} - + {{/if}}
Size (e.g. bytes, pages, inches, etc.) or duration (extent), e.g. hours, minutes, days, etc., of a resource.

\ No newline at end of file