From 80c2157aabd5663925aa45f48555803c91c6ca54 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Wed, 25 Mar 2020 10:44:55 +0100 Subject: [PATCH 01/21] funder api addresses https://github.com/datacite/bracco/issues/329 --- app/adapters/funder.js | 22 ++++++++++++++++++++++ app/models/funder.js | 10 ++++++++++ app/serializers/funder.js | 29 +++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 app/adapters/funder.js create mode 100644 app/models/funder.js create mode 100644 app/serializers/funder.js diff --git a/app/adapters/funder.js b/app/adapters/funder.js new file mode 100644 index 000000000..3a85f9044 --- /dev/null +++ b/app/adapters/funder.js @@ -0,0 +1,22 @@ +import JSONAPIAdapter from '@ember-data/adapter/json-api'; +import DataAdapterMixin from 'ember-simple-auth/mixins/data-adapter-mixin'; +import ENV from 'bracco/config/environment'; + +export default JSONAPIAdapter.extend(DataAdapterMixin, { + host: ENV.CROSSREF_API_URL, + + init() { + this._super(...arguments); + + this.set('headers', { + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', + }); + }, + + authorize() { + }, + + pathForType() { + return 'funders'; + }, +}); diff --git a/app/models/funder.js b/app/models/funder.js new file mode 100644 index 000000000..4028d085b --- /dev/null +++ b/app/models/funder.js @@ -0,0 +1,10 @@ +import Model, { attr } from '@ember-data/model'; + +export default Model.extend({ + meta: attr(), + + funderId: attr('string'), + name: attr('string'), + uri: attr('string'), + location: attr('string'), +}); diff --git a/app/serializers/funder.js b/app/serializers/funder.js new file mode 100644 index 000000000..a8334670d --- /dev/null +++ b/app/serializers/funder.js @@ -0,0 +1,29 @@ +import JSONSerializer from '@ember-data/serializer/json'; +import { underscore } from '@ember/string'; +import { assign } from '@ember/polyfills'; + +export default JSONSerializer.extend({ + normalizeArrayResponse(store, primaryModelClass, payload, id, requestType) { + let total = payload.message.total_results; + let totalPages = Math.min(Math.ceil(total / 20), 500); + let meta = { meta: { total, totalPages } }; + payload = payload.message.items.map(item => { + return item; + }); + let data = this._super(store, primaryModelClass, payload, id, requestType); + return assign(data, meta); + }, + normalizeSingleResponse(store, primaryModelClass, payload, id, requestType) { + // strip "https://" from id + payload.id = payload.message.id; + return this._super(store, primaryModelClass, payload, id, requestType); + }, + // normalizeFindRecordResponse(store, primaryModelClass, payload) { + // payload.data.attributes.meta = payload.meta || {}; + + // return this._super(store, primaryModelClass, payload); + // }, + keyForAttribute(attr) { + return underscore(attr); + }, +}); \ No newline at end of file From 432df565c478010ccb633de55fa7fa951aac6b0c Mon Sep 17 00:00:00 2001 From: kjgarza Date: Wed, 25 Mar 2020 11:43:57 +0100 Subject: [PATCH 02/21] model for funders id addresses https://github.com/datacite/bracco/issues/329 --- app/helpers/doi-form-errors.js | 5 +++++ app/models/doi.js | 2 +- app/models/funding-reference.js | 35 +++++++++++++++++++++++++++++++++ app/serializers/doi.js | 2 +- config/environment.js | 2 ++ 5 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 app/models/funding-reference.js diff --git a/app/helpers/doi-form-errors.js b/app/helpers/doi-form-errors.js index 1731c9147..2735e8760 100644 --- a/app/helpers/doi-form-errors.js +++ b/app/helpers/doi-form-errors.js @@ -42,6 +42,11 @@ export function doiFormErrors([ model ]) { errorAttributes = errorAttributes.concat(relatedIdentifier.validations.errors.mapBy('attribute')); }); } + if (model.fundingReferences) { + model.fundingReferences.forEach((fundingReference) => { + errorAttributes = errorAttributes.concat(fundingReference.validations.errors.mapBy('attribute')); + }); + } } return errorAttributes.map(function(attribute) { diff --git a/app/models/doi.js b/app/models/doi.js index 5e0a7e2ca..f052b6cfb 100644 --- a/app/models/doi.js +++ b/app/models/doi.js @@ -159,7 +159,7 @@ export default DS.Model.extend(Validations, { rightsList: DS.attr(), descriptions: fragmentArray('description', { defaultValue: [] }), geoLocations: fragmentArray('geoLocation', { defaultValue: [] }), - fundingReferences: DS.attr(), + fundingReferences: fragmentArray('fundingReference', { defaultValue: [] }), landingPage: DS.attr(), xml: DS.attr('xml'), metadataVersion: DS.attr('string'), diff --git a/app/models/funding-reference.js b/app/models/funding-reference.js new file mode 100644 index 000000000..e6bec5cb5 --- /dev/null +++ b/app/models/funding-reference.js @@ -0,0 +1,35 @@ +import DS from 'ember-data'; +import Fragment from 'ember-data-model-fragments/fragment'; +import { validator, buildValidations } from 'ember-cp-validations'; +import { computed } from '@ember/object'; + +const Validations = buildValidations({ + funderName: [ + validator('presence', { + presence: true, + isWarning: computed('model.state', function() { + return this.model.get('state') === 'draft'; + }), + disabled: computed('model.funderIdentifier', function() { + return this.model.get('funderIdentifier') == null; + }), + }), + ], + awardUri: [ + validator('url-format', { + allowBlank: true, + require_tld: false, + message: 'Please enter a valid URL.', + }), + ], +}); + +export default Fragment.extend(Validations, { + funderName: DS.attr('string', { defaultValue: null }), + funderIdentifier: DS.attr('string', { defaultValue: null }), + funderIdentifierType: DS.attr('string', { defaultValue: 'Other' }), + // schemeUri: DS.attr('string', { defaultValue: null }), + awardNumber: DS.attr('string', { defaultValue: null }), + awardUri: DS.attr('string', { defaultValue: null }), + awardTitle: DS.attr('string', { defaultValue: null }), +}); diff --git a/app/serializers/doi.js b/app/serializers/doi.js index 4e8b2380b..937a8306e 100644 --- a/app/serializers/doi.js +++ b/app/serializers/doi.js @@ -34,7 +34,7 @@ export default ApplicationSerializer.extend({ version: { serialize: false }, rightsList: { serialize: false }, // geoLocations: { serialize: false }, - fundingReferences: { serialize: false }, + // fundingReferences: { serialize: false }, schemaVersion: { serialize: false }, // don't send back these attributes, as they are managed by the API diff --git a/config/environment.js b/config/environment.js index 0dab7fd2e..d7d86a621 100644 --- a/config/environment.js +++ b/config/environment.js @@ -59,6 +59,7 @@ module.exports = function(environment) { API_URL: process.env.API_URL || 'https://api.test.datacite.org', FABRICA_URL: process.env.FABRICA_URL || 'https://doi.test.datacite.org', ROR_API_URL: process.env.ROR_API_URL || 'https://api.ror.org', + CROSSREF_API_URL: process.env.CROSSREF_API_URL || 'https://api.crossref.org', ORCID_API_URL: process.env.ORCID_API_URL || 'https://pub.orcid.org', EVENTDATA_URL: process.env.EVENTDATA_URL || 'https://api.test.datacite.org', CDN_URL: process.env.CDN_URL || 'https://assets.test.datacite.org', @@ -87,6 +88,7 @@ module.exports = function(environment) { ENV.API_URL = 'https://api.datacite.org'; ENV.ORCID_URL = 'https://orcid.org'; ENV.FABRICA_URL = 'https://doi.datacite.org'; + ENV.CROSSREF_API_URL = 'https://api.crossref.org'; ENV.EVENTDATA_URL = 'https://api.datacite.org'; ENV.SEARCH_URL = 'https://search.datacite.org'; ENV.CDN_URL = 'https://assets.datacite.org'; From a34fb893a629077eb075dc87ec0f12067766775a Mon Sep 17 00:00:00 2001 From: kjgarza Date: Wed, 25 Mar 2020 15:59:09 +0100 Subject: [PATCH 03/21] related Identifier fixes --- app/templates/components/doi-related-identifier.hbs | 3 +-- app/templates/components/doi-subject.hbs | 2 +- .../components/doi-related-identifier-test.js | 4 ++-- tests/unit/models/related-identifier-test .js | 12 ++++++++++++ 4 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 tests/unit/models/related-identifier-test .js diff --git a/app/templates/components/doi-related-identifier.hbs b/app/templates/components/doi-related-identifier.hbs index 3c8133c6b..ae8ad2651 100644 --- a/app/templates/components/doi-related-identifier.hbs +++ b/app/templates/components/doi-related-identifier.hbs @@ -12,7 +12,6 @@ {{else}} -
{{/if}} @@ -77,7 +76,7 @@
-
{{#form.element controlType="power-select" - helpText="The general type of the resource." + helpText="Subject, keyword, classification code, or key phrase describing the resource." options=subjects value=fragment.subject disabled=disabled diff --git a/tests/integration/components/doi-related-identifier-test.js b/tests/integration/components/doi-related-identifier-test.js index fb874aed3..a20c86656 100644 --- a/tests/integration/components/doi-related-identifier-test.js +++ b/tests/integration/components/doi-related-identifier-test.js @@ -11,9 +11,9 @@ module('Integration | Component | doi related-identifier', function(hooks) { test('it renders', async function(assert) { this.set('model', make('doi')); - this.set('fragment', make('geoLocation')); + this.set('fragment', make('relatedIdentifier')); await render(hbs`{{doi-related-identifier model=model fragment=fragment index=0}}`); - assert.dom('*').hasText('Identifiers of related resources. These must be globally unique identifiers, such as: ARK, arXiv, bibcode, DOI, EAN13, EISSN, Handle, IGSN, ISBN, ISSN, ISTC, LISSN, LSID, PMID, PURL, UPC, URL, URN, w3id. Related Identifier Type Relation Type'); + assert.dom('*').hasText('Identifiers of related resources. These must be globally unique identifiers, such as: ARK, arXiv, bibcode, DOI, EAN13, EISSN, Handle, IGSN, ISBN, ISSN, ISTC, LISSN, LSID, PMID, PURL, UPC, URL, URN, w3id. Related Identifier Type Relation Type Related Metadata Scheme The name of the scheme. Related Metadata Scheme URI The URI of the relatedMetadataScheme. Related Metadata Scheme Type The type of the relatedMetadataScheme, linked with the schemeURI.'); }); }); diff --git a/tests/unit/models/related-identifier-test .js b/tests/unit/models/related-identifier-test .js new file mode 100644 index 000000000..a5ac38be9 --- /dev/null +++ b/tests/unit/models/related-identifier-test .js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | related-identifier', function(hooks) { + setupTest(hooks); + + test('it exists', function(assert) { + let model = run(() => this.owner.lookup('service:store').createRecord('related-identifier')); + assert.ok(!!model); + }); +}); \ No newline at end of file From 3721ade78665500392ace6b3d0fb94cc39260359 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Wed, 25 Mar 2020 16:23:59 +0100 Subject: [PATCH 04/21] adjust language aligntment --- app/templates/components/doi-language.hbs | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/app/templates/components/doi-language.hbs b/app/templates/components/doi-language.hbs index 8054aee51..78e79656f 100644 --- a/app/templates/components/doi-language.hbs +++ b/app/templates/components/doi-language.hbs @@ -1,14 +1,10 @@
-
- {{!--
--}} - {{!-- --}} - {{#form.element controlType="power-select" id="doi-language" formLayout="vertical" disabled=disabled value=language options=languages as |el|}} - {{el.control onChange=(action "selectLanguage") search=(action "searchLanguage") placeholder="Select Language" searchPlaceholder="Type to search..." allowClear=true }} - {{/form.element}} - {{!-- --}} - {{!--
--}} -
The primary language of the resource.
+
+ {{#form.element controlType="power-select" id="doi-language" helpText="The primary language of the resource." formLayout="vertical" disabled=disabled value=language options=languages as |el|}} + {{el.control onChange=(action "selectLanguage") search=(action "searchLanguage") placeholder="Select Language" searchPlaceholder="Type to search..." allowClear=true }} + {{/form.element}} +
\ No newline at end of file From b935855ad1166beda8e2d37b7378574674c840ba Mon Sep 17 00:00:00 2001 From: kjgarza Date: Thu, 26 Mar 2020 09:00:55 +0100 Subject: [PATCH 05/21] funding refereance component addresses https://github.com/datacite/bracco/issues/329 --- app/components/doi-contributor.js | 1 + app/components/doi-funding-reference.js | 114 +++++++++++++++++ app/components/doi-funding-references.js | 22 ++++ .../components/doi-funding-reference.hbs | 120 ++++++++++++++++++ .../components/doi-funding-references.hbs | 12 ++ app/templates/dois/show/edit.hbs | 1 + app/templates/repositories/show/dois/new.hbs | 1 + 7 files changed, 271 insertions(+) create mode 100644 app/components/doi-funding-reference.js create mode 100644 app/components/doi-funding-references.js create mode 100644 app/templates/components/doi-funding-reference.hbs create mode 100644 app/templates/components/doi-funding-references.hbs diff --git a/app/components/doi-contributor.js b/app/components/doi-contributor.js index 7575618da..efeb04ff7 100644 --- a/app/components/doi-contributor.js +++ b/app/components/doi-contributor.js @@ -30,6 +30,7 @@ export default PersonBaseComponent.extend({ if (contributorType) { this.fragment.set('contributorType', contributorTypes.filter(function(type) {return type === contributorType;})); this.set('contributorType', contributorType); + [ 'HostingInstitution', 'RegistrationAgency','RegistrationAuthority', 'ResearchGroup' ].includes(contributorType) ? this.set('nameType', 'Organization') : this.set('nameType', 'Person'); } else { this.fragment.set('contributorType', null); } diff --git a/app/components/doi-funding-reference.js b/app/components/doi-funding-reference.js new file mode 100644 index 000000000..f06c70f0c --- /dev/null +++ b/app/components/doi-funding-reference.js @@ -0,0 +1,114 @@ +import Component from '@ember/component'; +import { inject as service } from '@ember/service'; + +const funderIdentifierTypeList = [ + 'Crossref Funder ID', + 'GRID', + 'ISNI', + 'ROR', + 'Other', +]; + +export default Component.extend({ + funderIdentifierTypeList, + funderIdentifierTypes: funderIdentifierTypeList, + isCrossrefId: false, + selected: [], + store: service(), + + funders: [], + + didReceiveAttrs() { + this._super(...arguments); + + if (funderIdentifierTypeList.includes(this.fragment.get('subject'))) { + this.set('isCrossrefId', true); + } else { + this.set('isCrossrefId', false); + } + }, + updateFunderSchemeAndType(scheme) { + switch (scheme) { + case scheme == 'ROR': + // this.fragment.set('schemeUri', 'https://ror.org/'); + this.fragment.set('funderIdentifierType', 'ROR'); + break; + case scheme == 'Crossref Funder ID': + // this.fragment.set('schemeUri', 'https://www.crossref.org/services/funder-registry/'); + this.fragment.set('funderIdentifierType', 'Crossref Funder ID'); + break; + case scheme == 'GRID': + // this.fragment.set('schemeUri', 'https://www.grid.ac/'); + this.fragment.set('relatedIdentifierType', 'GRID'); + break; + case scheme == 'ISNI': + // this.fragment.set('schemeUri', 'http://www.isni.org/isni/'); + this.fragment.set('funderIdentifierType', 'ISNI'); + break; + default: + // this.fragment.set('schemeUri', null); + this.fragment.set('funderIdentifierType', 'Other'); + break; + } + }, + updateFunderReference(funder) { + if (funder) { + this.fragment.set('funderName', funder.name); + this.fragment.set('funderIdentifierType', 'Crossref Funder ID'); + this.fragment.set('schemeUri', 'https://www.crossref.org/services/funder-registry/'); + this.fragment.set('funderIdentifier', funder.uri); + this.set('isCrossrefId', true); + } else { + // this.fragment.set('funderName', funder); + this.fragment.set('funderIdentifierType', null); + this.fragment.set('funderIdentifier', null); + this.fragment.set('funderName', null); + this.updateFunderSchemeAndType(null); + this.set('isCrossrefId', false); + } + }, + + actions: { + updateFunderIdentifierType(value) { + this.fragment.set('funderIdentifierType', value); + // this.updateFunderSchemeAndType(value); + }, + updateFunderIdentifier(value) { + this.fragment.set('funderIdentifier', value); + }, + searchFunderIdentifier(value) { + this.fragment.set('funderIdentifier', value); + }, + selectFunderReference(value) { + this.updateFunderReference(value); + }, + updateFunderName(value) { + this.fragment.set('funderName', value); + }, + selectFunderIdentifierType(value) { + this.fragment.set('funderIdentifierType', value); + }, + updateSchemeUri(value) { + this.fragment.set('schemeUri', value); + }, + updateAwardNumber(value) { + this.fragment.set('awardNumber', value); + }, + updateAwardTitle(value) { + this.fragment.set('awardTitle', value); + }, + updateAwardUri(value) { + this.fragment.set('awardUri', value); + }, + deleteFundingReference() { + this.model.get('fundingReferences').removeObject(this.fragment); + }, + searchFundingReferences(query) { + let self = this; + this.store.query('funder', { query }).then(function(funders) { + self.set('funders', funders); + }); + }, + }, +}); + diff --git a/app/components/doi-funding-references.js b/app/components/doi-funding-references.js new file mode 100644 index 000000000..09de0b1aa --- /dev/null +++ b/app/components/doi-funding-references.js @@ -0,0 +1,22 @@ +import Component from '@ember/component'; + +export default Component.extend({ + validationClass: null, + + didReceiveAttrs() { + this._super(...arguments); + + if (!this.model.get('fundingReferences')) { + this.model.set('fundingReferences', []); + } + if (this.model.get('fundingReferences').length == 0) { + this.model.get('fundingReferences').createFragment(); + } + }, + + actions: { + addFundingReference() { + this.model.get('fundingReferences').createFragment(); + }, + }, +}); diff --git a/app/templates/components/doi-funding-reference.hbs b/app/templates/components/doi-funding-reference.hbs new file mode 100644 index 000000000..a93b2f6a3 --- /dev/null +++ b/app/templates/components/doi-funding-reference.hbs @@ -0,0 +1,120 @@ + +
+ +
+ +
+ {{#form.element + controlType="power-select" + helpText="Look up for funder references in the Crossref Funders Registry." + options=funders + value=fragment.name + disabled=disabled + destination=fragment.funderIdentifier as |el| + }} + {{#el.control + searchEnabled=true + onChange=(action "selectFunderReference") + placeholder="Search Funding Reference" + search=(action "searchFundingReferences") + searchPlaceholder="Type to search..." + allowClear=true + as |item| }} + {{if item.name item.name fragment.name}} + {{/el.control}} + {{/form.element}} +
+ +{{#if (gt index 0)}} +
+ +
+
+ + +
+ Information about financial support (funding) for the resource being registered. +
+ + + {{fa-icon "trash"}} + +
+{{else}} +
+ +
+ + +
+ Information about financial support (funding) for the resource being registered. +
+{{/if}} + +
+ +
+ + +
+ Uniquely identifies a funding entity, according to any of these types: Crossref Funder ID, GRID, ISNI, or ROR. +
+ +
+ +
+
+ {{#form.element + controlType="power-select" + value=fragment.funderIdentifierType + helpText="The type of the funderIdentifier." + options=funderIdentifierTypeList + disabled=isCrossrefId + destination=fragment.funderIdentifierType as |el| + }} + {{el.control + onChange=(action "selectFunderIdentifierType") + placeholder="Select Funder Identifier Type" + }} + {{/form.element}} + +
+ +
+ +
+ + +
+ The code assigned by the funder to a sponsored award (grant). +
+ +
+ +
+ + + +
+ The human readable title or name of the award (grant). +
+ +
+ +
+ + + +
+ The URI leading to a page provided by the funder for more information about the award (grant). +
+ + +
\ No newline at end of file diff --git a/app/templates/components/doi-funding-references.hbs b/app/templates/components/doi-funding-references.hbs new file mode 100644 index 000000000..166d9280f --- /dev/null +++ b/app/templates/components/doi-funding-references.hbs @@ -0,0 +1,12 @@ +
+ +
+ {{#each model.fundingReferences as |fundingReference index|}} + + {{/each}} + + {{#if (lte model.fundingReferences.length 4)}} + {{fa-icon "plus"}} Add another Funder Reference + {{/if}} +
+
\ No newline at end of file diff --git a/app/templates/dois/show/edit.hbs b/app/templates/dois/show/edit.hbs index 25d66cc07..35c014a6b 100644 --- a/app/templates/dois/show/edit.hbs +++ b/app/templates/dois/show/edit.hbs @@ -36,6 +36,7 @@ + {{/if}}
diff --git a/app/templates/repositories/show/dois/new.hbs b/app/templates/repositories/show/dois/new.hbs index 3192650f9..13331ea72 100644 --- a/app/templates/repositories/show/dois/new.hbs +++ b/app/templates/repositories/show/dois/new.hbs @@ -28,6 +28,7 @@ + {{/if}}
From 26a5f3b53d7225f4b2a642ad8b8eaeee04e9bc4d Mon Sep 17 00:00:00 2001 From: kjgarza Date: Thu, 26 Mar 2020 09:01:13 +0100 Subject: [PATCH 06/21] tests related addresses https://github.com/datacite/bracco/issues/329 --- .../recording.har | 629 ++++++++++++++++++ tests/acceptance/client_admin/doi-test.js | 15 + tests/acceptance/staff_admin/doi-test.js | 8 +- tests/factories/doi.js | 12 + .../components/doi-funding-reference.js | 19 + .../components/doi-funding-references.js | 37 ++ tests/unit/models/funding-reference-test.js | 12 + 7 files changed, 730 insertions(+), 2 deletions(-) create mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-funding-References_3830225712/recording.har create mode 100644 tests/integration/components/doi-funding-reference.js create mode 100644 tests/integration/components/doi-funding-references.js create mode 100644 tests/unit/models/funding-reference-test.js diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-funding-References_3830225712/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-funding-References_3830225712/recording.har new file mode 100644 index 000000000..99539249e --- /dev/null +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-funding-References_3830225712/recording.har @@ -0,0 +1,629 @@ +{ + "log": { + "_recordingName": "Acceptance | client_admin | doi/visiting the Form and adding funding References", + "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-25T14:07:00.341Z", + "time": 237, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 237 + } + }, + { + "_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\":393,\"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\":193},{\"id\":\"2020\",\"title\":\"2020\",\"count\":87}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":115},{\"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\":238},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":134},{\"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\":1}],\"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\":386},{\"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-25T14:07:00.632Z", + "time": 596, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 596 + } + }, + { + "_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": 5875, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 5875, + "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.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1},\"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.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"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-25T14:07:01.244Z", + "time": 175, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 175 + } + }, + { + "_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-12T10:54:42.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-25T14:07:01.460Z", + "time": 165, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 165 + } + }, + { + "_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": 962, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 962, + "text": "{\"data\":[{\"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\":1,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":1}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":1}]},\"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-25T14:07:02.116Z", + "time": 143, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 143 + } + }, + { + "_id": "7402d0fe83aa82dc472aa2dbc7d05fb3", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 822, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "prefix", + "value": "10.80225" + } + ], + "url": "https://api.test.datacite.org/dois/random?prefix=10.80225" + }, + "response": { + "bodySize": 31, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 31, + "text": "{\"dois\":[\"10.80225/0qr7-tk09\"]}" + }, + "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-25T14:07:02.275Z", + "time": 276, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 276 + } + }, + { + "_id": "9c69df4d8d2a08d32bcaaa32d3811630", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 138, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://api.test.datacite.org/prefixes/10.80225" + }, + "response": { + "bodySize": 459, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 459, + "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-03-25T14:07:02.276Z", + "time": 237, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 237 + } + }, + { + "_id": "c9c8a004c0d47c6de6db628146b06fed", + "_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/0qr7-tk09" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F0qr7-tk09" + }, + "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%2F0qr7-tk09\"}}" + }, + "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-25T14:07:02.564Z", + "time": 88, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 88 + } + }, + { + "_id": "ed0fcfbf18ff66dada51959cf839a8b2", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 249, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "query", + "value": "Action for M.E." + } + ], + "url": "https://api.crossref.org/funders?query=Action%20for%20M.E." + }, + "response": { + "bodySize": 12709, + "content": { + "mimeType": "application/json;charset=UTF-8", + "size": 12709, + "text": "{\"status\":\"ok\",\"message-type\":\"funder-list\",\"message-version\":\"1.0.0\",\"message\":{\"items-per-page\":20,\"query\":{\"start-index\":0,\"search-terms\":\"Action for M.E.\"},\"total-results\":3,\"items\":[{\"id\":\"501100001982\",\"location\":\"United Kingdom\",\"name\":\"Action for M.E.\",\"alt-names\":[],\"uri\":\"http:\\/\\/dx.doi.org\\/10.13039\\/501100001982\",\"replaces\":[],\"replaced-by\":[],\"tokens\":[\"action\",\"for\",\"me\"]},{\"id\":\"100011264\",\"location\":null,\"name\":\"FP7 People: Marie-Curie Actions\",\"alt-names\":[\"PEOPLE\",\"Programma specifico \\\"Persone\\\"\",\"PEOPLE - Programa espec\\u00edfico \\\"Personas\\\" por el que se ejecuta el s\\u00e9ptimo programa marco de la Comunidad Europea de acciones de investigaci\\u00f3n, desarrollo tecnol\\u00f3gico y demostraci\\u00f3n (2007-2013)\",\"PEOPLE - Programma specifico \\\"Persone\\\" che attua il settimo programma quadro della Comunit\\u00e0 europea per le attivit\\u00e0 di ricerca, sviluppo tecnologico e dimostrazione (2007-2013)\",\"Program szczeg\\u00f3\\u0142owego \\\"Ludzie\\\", wdra\\u017caj\\u0105cego si\\u00f3dmy program ramowy Wsp\\u00f3lnoty Europejskiej w zakresie bada\\u0144, rozwoju technologicznego i demonstracji (2007\\u20132013)\",\"Programme sp\\u00e9cifique \\\"Personnes\\\"\",\"FP7 Spezifisches Programm \\\"Menschen\\\" zur Durchf\\u00fchrung des Siebten Rahmenprogramms der Europ\\u00e4ischen Gemeinschaft f\\u00fcr Forschung, technologische Entwicklung und Demonstration (2007-2013)\",\"Specific Programme \\\"People\\\" Implementing the Seventh Framework Programme of the European Community for Research, Technological Development and Demonstration Activities (2007 to 2013)\",\"PEOPLE - Program szczeg\\u00f3\\u0142owego \\\"Ludzie\\\", wdra\\u017caj\\u0105cego si\\u00f3dmy program ramowy Wsp\\u00f3lnoty Europejskiej w zakresie bada\\u0144, rozwoju technologicznego i demonstracji (2007\\u20132013)\",\"Programa espec\\u00edfico \\\"Personas\\\"\",\"FP7-PEOPLE - Programme sp\\u00e9cifique \\\"Personnes\\\" mettant en \\u0153uvre le septi\\u00e8me programme-cadre de la Communaut\\u00e9 europ\\u00e9enne pour des activit\\u00e9s de recherche, de d\\u00e9veloppement technologique et de d\\u00e9monstration (2007-2013)\",\"FP7- Programa espec\\u00edfico \\\"Personas\\\" por el que se ejecuta el s\\u00e9ptimo programa marco de la Comunidad Europea de acciones de investigaci\\u00f3n, desarrollo tecnol\\u00f3gico y demostraci\\u00f3n (2007-2013)\",\"PEOPLE - Specific Programme \\\"People\\\" Implementing the Seventh Framework Programme of the European Community for Research, Technological Development and Demonstration Activities (2007 to 2013)\",\"Programma specifico \\\"Persone\\\" che attua il settimo programma quadro della Comunit\\u00e0 europea per le attivit\\u00e0 di ricerca, sviluppo tecnologico e dimostrazione (2007-2013)\",\"FP7-PEOPLE - Programa espec\\u00edfico \\\"Personas\\\" por el que se ejecuta el s\\u00e9ptimo programa marco de la Comunidad Europea de acciones de investigaci\\u00f3n, desarrollo tecnol\\u00f3gico y demostraci\\u00f3n (2007-2013)\",\"FP7-PEOPLE\",\"FP7 People: Marie Sk\\u0142odowska-Curie Actions\",\"PF7 Program szczeg\\u00f3\\u0142owego \\\"Ludzie\\\"\",\"FP7 Spezifisches Programm \\\"Menschen\\\"\",\"FP7 rogramme sp\\u00e9cifique \\\"Personnes\\\"\",\"Specific Programme \\\"People\\\"\",\"PF7 Program szczeg\\u00f3\\u0142owego \\\"Ludzie\\\", wdra\\u017caj\\u0105cego si\\u00f3dmy program ramowy Wsp\\u00f3lnoty Europejskiej w zakresie bada\\u0144, rozwoju technologicznego i demonstracji (2007\\u20132013)\",\"PEOPLE - Spezifisches Programm \\\"Menschen\\\" zur Durchf\\u00fchrung des Siebten Rahmenprogramms der Europ\\u00e4ischen Gemeinschaft f\\u00fcr Forschung, technologische Entwicklung und Demonstration (2007-2013)\",\"FP7 Specific Programme \\\"People\\\" Implementing the Seventh Framework Programme of the European Community for Research, Technological Development and Demonstration Activities (2007 to 2013)\",\"FP7 - Programme sp\\u00e9cifique \\\"Personnes\\\" mettant en \\u0153uvre le septi\\u00e8me programme-cadre de la Communaut\\u00e9 europ\\u00e9enne pour des activit\\u00e9s de recherche, de d\\u00e9veloppement technologique et de d\\u00e9monstration (2007-2013)\",\"FP7 Programa espec\\u00edfico \\\"Personas\\\"\",\"FP7-PEOPLE - Program szczeg\\u00f3\\u0142owego \\\"Ludzie\\\", wdra\\u017caj\\u0105cego si\\u00f3dmy program ramowy Wsp\\u00f3lnoty Europejskiej w zakresie bada\\u0144, rozwoju technologicznego i demonstracji (2007\\u20132013)\",\"FP7-PEOPLE - Spezifisches Programm \\\"Menschen\\\" zur Durchf\\u00fchrung des Siebten Rahmenprogramms der Europ\\u00e4ischen Gemeinschaft f\\u00fcr Forschung, technologische Entwicklung und Demonstration (2007-2013)\",\"PF7 - Programma specifico \\\"Persone\\\" che attua il settimo programma quadro della Comunit\\u00e0 europea per le attivit\\u00e0 di ricerca, sviluppo tecnologico e dimostrazione (2007-2013)\",\"Program szczeg\\u00f3\\u0142owego \\\"Ludzie\\\"\",\"Spezifisches Programm \\\"Menschen\\\"\",\"FP7-PEOPLE - Programma specifico \\\"Persone\\\" che attua il settimo programma quadro della Comunit\\u00e0 europea per le attivit\\u00e0 di ricerca, sviluppo tecnologico e dimostrazione (2007-2013)\",\"FP7 People\",\"Spezifisches Programm \\\"Menschen\\\" zur Durchf\\u00fchrung des Siebten Rahmenprogramms der Europ\\u00e4ischen Gemeinschaft f\\u00fcr Forschung, technologische Entwicklung und Demonstration (2007-2013)\",\"Programme sp\\u00e9cifique \\\"Personnes\\\" mettant en \\u0153uvre le septi\\u00e8me programme-cadre de la Communaut\\u00e9 europ\\u00e9enne pour des activit\\u00e9s de recherche, de d\\u00e9veloppement technologique et de d\\u00e9monstration (2007-2013)\",\"FP7 Specific Programme \\\"People\\\"\",\"PEOPLE - Programme sp\\u00e9cifique \\\"Personnes\\\" mettant en \\u0153uvre le septi\\u00e8me programme-cadre de la Communaut\\u00e9 europ\\u00e9enne pour des activit\\u00e9s de recherche, de d\\u00e9veloppement technologique et de d\\u00e9monstration (2007-2013)\",\"Programa espec\\u00edfico \\\"Personas\\\" por el que se ejecuta el s\\u00e9ptimo programa marco de la Comunidad Europea de acciones de investigaci\\u00f3n, desarrollo tecnol\\u00f3gico y demostraci\\u00f3n (2007-2013)\",\"PF7 Programma specifico \\\"Persone\\\"\"],\"uri\":\"http:\\/\\/dx.doi.org\\/10.13039\\/100011264\",\"replaces\":[],\"replaced-by\":[],\"tokens\":[\"fp7\",\"people:\",\"marie\",\"curie\",\"actions\",\"people\",\"programma\",\"specifico\",\"persone\",\"people\",\"programa\",\"espec\\u00edfico\",\"personas\",\"por\",\"el\",\"que\",\"se\",\"ejecuta\",\"el\",\"s\\u00e9ptimo\",\"programa\",\"marco\",\"de\",\"la\",\"comunidad\",\"europea\",\"de\",\"acciones\",\"de\",\"investigaci\\u00f3n\",\"desarrollo\",\"tecnol\\u00f3gico\",\"y\",\"demostraci\\u00f3n\",\"2007\",\"2013\",\"people\",\"programma\",\"specifico\",\"persone\",\"che\",\"attua\",\"il\",\"settimo\",\"programma\",\"quadro\",\"della\",\"comunit\\u00e0\",\"europea\",\"per\",\"le\",\"attivit\\u00e0\",\"di\",\"ricerca\",\"sviluppo\",\"tecnologico\",\"e\",\"dimostrazione\",\"2007\",\"2013\",\"program\",\"szczeg\\u00f3\\u0142owego\",\"ludzie\",\"wdra\\u017caj\\u0105cego\",\"si\\u00f3dmy\",\"program\",\"ramowy\",\"wsp\\u00f3lnoty\",\"europejskiej\",\"w\",\"zakresie\",\"bada\\u0144\",\"rozwoju\",\"technologicznego\",\"i\",\"demonstracji\",\"2007\\u20132013\",\"programme\",\"sp\\u00e9cifique\",\"personnes\",\"fp7\",\"spezifisches\",\"programm\",\"menschen\",\"zur\",\"durchf\\u00fchrung\",\"des\",\"siebten\",\"rahmenprogramms\",\"der\",\"europ\\u00e4ischen\",\"gemeinschaft\",\"f\\u00fcr\",\"forschung\",\"technologische\",\"entwicklung\",\"und\",\"demonstration\",\"2007\",\"2013\",\"specific\",\"programme\",\"people\",\"implementing\",\"the\",\"seventh\",\"framework\",\"programme\",\"of\",\"the\",\"european\",\"community\",\"for\",\"research\",\"technological\",\"development\",\"and\",\"demonstration\",\"activities\",\"2007\",\"to\",\"2013\",\"people\",\"program\",\"szczeg\\u00f3\\u0142owego\",\"ludzie\",\"wdra\\u017caj\\u0105cego\",\"si\\u00f3dmy\",\"program\",\"ramowy\",\"wsp\\u00f3lnoty\",\"europejskiej\",\"w\",\"zakresie\",\"bada\\u0144\",\"rozwoju\",\"technologicznego\",\"i\",\"demonstracji\",\"2007\\u20132013\",\"programa\",\"espec\\u00edfico\",\"personas\",\"fp7\",\"people\",\"programme\",\"sp\\u00e9cifique\",\"personnes\",\"mettant\",\"en\",\"\\u0153uvre\",\"le\",\"septi\\u00e8me\",\"programme\",\"cadre\",\"de\",\"la\",\"communaut\\u00e9\",\"europ\\u00e9enne\",\"pour\",\"des\",\"activit\\u00e9s\",\"de\",\"recherche\",\"de\",\"d\\u00e9veloppement\",\"technologique\",\"et\",\"de\",\"d\\u00e9monstration\",\"2007\",\"2013\",\"fp7\",\"programa\",\"espec\\u00edfico\",\"personas\",\"por\",\"el\",\"que\",\"se\",\"ejecuta\",\"el\",\"s\\u00e9ptimo\",\"programa\",\"marco\",\"de\",\"la\",\"comunidad\",\"europea\",\"de\",\"acciones\",\"de\",\"investigaci\\u00f3n\",\"desarrollo\",\"tecnol\\u00f3gico\",\"y\",\"demostraci\\u00f3n\",\"2007\",\"2013\",\"people\",\"specific\",\"programme\",\"people\",\"implementing\",\"the\",\"seventh\",\"framework\",\"programme\",\"of\",\"the\",\"european\",\"community\",\"for\",\"research\",\"technological\",\"development\",\"and\",\"demonstration\",\"activities\",\"2007\",\"to\",\"2013\",\"programma\",\"specifico\",\"persone\",\"che\",\"attua\",\"il\",\"settimo\",\"programma\",\"quadro\",\"della\",\"comunit\\u00e0\",\"europea\",\"per\",\"le\",\"attivit\\u00e0\",\"di\",\"ricerca\",\"sviluppo\",\"tecnologico\",\"e\",\"dimostrazione\",\"2007\",\"2013\",\"fp7\",\"people\",\"programa\",\"espec\\u00edfico\",\"personas\",\"por\",\"el\",\"que\",\"se\",\"ejecuta\",\"el\",\"s\\u00e9ptimo\",\"programa\",\"marco\",\"de\",\"la\",\"comunidad\",\"europea\",\"de\",\"acciones\",\"de\",\"investigaci\\u00f3n\",\"desarrollo\",\"tecnol\\u00f3gico\",\"y\",\"demostraci\\u00f3n\",\"2007\",\"2013\",\"fp7\",\"people\",\"fp7\",\"people:\",\"marie\",\"sk\\u0142odowska\",\"curie\",\"actions\",\"pf7\",\"program\",\"szczeg\\u00f3\\u0142owego\",\"ludzie\",\"fp7\",\"spezifisches\",\"programm\",\"menschen\",\"fp7\",\"rogramme\",\"sp\\u00e9cifique\",\"personnes\",\"specific\",\"programme\",\"people\",\"pf7\",\"program\",\"szczeg\\u00f3\\u0142owego\",\"ludzie\",\"wdra\\u017caj\\u0105cego\",\"si\\u00f3dmy\",\"program\",\"ramowy\",\"wsp\\u00f3lnoty\",\"europejskiej\",\"w\",\"zakresie\",\"bada\\u0144\",\"rozwoju\",\"technologicznego\",\"i\",\"demonstracji\",\"2007\\u20132013\",\"people\",\"spezifisches\",\"programm\",\"menschen\",\"zur\",\"durchf\\u00fchrung\",\"des\",\"siebten\",\"rahmenprogramms\",\"der\",\"europ\\u00e4ischen\",\"gemeinschaft\",\"f\\u00fcr\",\"forschung\",\"technologische\",\"entwicklung\",\"und\",\"demonstration\",\"2007\",\"2013\",\"fp7\",\"specific\",\"programme\",\"people\",\"implementing\",\"the\",\"seventh\",\"framework\",\"programme\",\"of\",\"the\",\"european\",\"community\",\"for\",\"research\",\"technological\",\"development\",\"and\",\"demonstration\",\"activities\",\"2007\",\"to\",\"2013\",\"fp7\",\"programme\",\"sp\\u00e9cifique\",\"personnes\",\"mettant\",\"en\",\"\\u0153uvre\",\"le\",\"septi\\u00e8me\",\"programme\",\"cadre\",\"de\",\"la\",\"communaut\\u00e9\",\"europ\\u00e9enne\",\"pour\",\"des\",\"activit\\u00e9s\",\"de\",\"recherche\",\"de\",\"d\\u00e9veloppement\",\"technologique\",\"et\",\"de\",\"d\\u00e9monstration\",\"2007\",\"2013\",\"fp7\",\"programa\",\"espec\\u00edfico\",\"personas\",\"fp7\",\"people\",\"program\",\"szczeg\\u00f3\\u0142owego\",\"ludzie\",\"wdra\\u017caj\\u0105cego\",\"si\\u00f3dmy\",\"program\",\"ramowy\",\"wsp\\u00f3lnoty\",\"europejskiej\",\"w\",\"zakresie\",\"bada\\u0144\",\"rozwoju\",\"technologicznego\",\"i\",\"demonstracji\",\"2007\\u20132013\",\"fp7\",\"people\",\"spezifisches\",\"programm\",\"menschen\",\"zur\",\"durchf\\u00fchrung\",\"des\",\"siebten\",\"rahmenprogramms\",\"der\",\"europ\\u00e4ischen\",\"gemeinschaft\",\"f\\u00fcr\",\"forschung\",\"technologische\",\"entwicklung\",\"und\",\"demonstration\",\"2007\",\"2013\",\"pf7\",\"programma\",\"specifico\",\"persone\",\"che\",\"attua\",\"il\",\"settimo\",\"programma\",\"quadro\",\"della\",\"comunit\\u00e0\",\"europea\",\"per\",\"le\",\"attivit\\u00e0\",\"di\",\"ricerca\",\"sviluppo\",\"tecnologico\",\"e\",\"dimostrazione\",\"2007\",\"2013\",\"program\",\"szczeg\\u00f3\\u0142owego\",\"ludzie\",\"spezifisches\",\"programm\",\"menschen\",\"fp7\",\"people\",\"programma\",\"specifico\",\"persone\",\"che\",\"attua\",\"il\",\"settimo\",\"programma\",\"quadro\",\"della\",\"comunit\\u00e0\",\"europea\",\"per\",\"le\",\"attivit\\u00e0\",\"di\",\"ricerca\",\"sviluppo\",\"tecnologico\",\"e\",\"dimostrazione\",\"2007\",\"2013\",\"fp7\",\"people\",\"spezifisches\",\"programm\",\"menschen\",\"zur\",\"durchf\\u00fchrung\",\"des\",\"siebten\",\"rahmenprogramms\",\"der\",\"europ\\u00e4ischen\",\"gemeinschaft\",\"f\\u00fcr\",\"forschung\",\"technologische\",\"entwicklung\",\"und\",\"demonstration\",\"2007\",\"2013\",\"programme\",\"sp\\u00e9cifique\",\"personnes\",\"mettant\",\"en\",\"\\u0153uvre\",\"le\",\"septi\\u00e8me\",\"programme\",\"cadre\",\"de\",\"la\",\"communaut\\u00e9\",\"europ\\u00e9enne\",\"pour\",\"des\",\"activit\\u00e9s\",\"de\",\"recherche\",\"de\",\"d\\u00e9veloppement\",\"technologique\",\"et\",\"de\",\"d\\u00e9monstration\",\"2007\",\"2013\",\"fp7\",\"specific\",\"programme\",\"people\",\"people\",\"programme\",\"sp\\u00e9cifique\",\"personnes\",\"mettant\",\"en\",\"\\u0153uvre\",\"le\",\"septi\\u00e8me\",\"programme\",\"cadre\",\"de\",\"la\",\"communaut\\u00e9\",\"europ\\u00e9enne\",\"pour\",\"des\",\"activit\\u00e9s\",\"de\",\"recherche\",\"de\",\"d\\u00e9veloppement\",\"technologique\",\"et\",\"de\",\"d\\u00e9monstration\",\"2007\",\"2013\",\"programa\",\"espec\\u00edfico\",\"personas\",\"por\",\"el\",\"que\",\"se\",\"ejecuta\",\"el\",\"s\\u00e9ptimo\",\"programa\",\"marco\",\"de\",\"la\",\"comunidad\",\"europea\",\"de\",\"acciones\",\"de\",\"investigaci\\u00f3n\",\"desarrollo\",\"tecnol\\u00f3gico\",\"y\",\"demostraci\\u00f3n\",\"2007\",\"2013\",\"pf7\",\"programma\",\"specifico\",\"persone\"]},{\"id\":\"100014248\",\"location\":\"United Kingdom\",\"name\":\"Innovative Methods and Metrics for Agriculture and Nutrition Actions\",\"alt-names\":[\"IMMANA\"],\"uri\":\"http:\\/\\/dx.doi.org\\/10.13039\\/100014248\",\"replaces\":[],\"replaced-by\":[],\"tokens\":[\"innovative\",\"methods\",\"and\",\"metrics\",\"for\",\"agriculture\",\"and\",\"nutrition\",\"actions\",\"immana\"]}]}}" + }, + "cookies": [], + "headers": [ + { + "name": "content-length", + "value": "12709" + }, + { + "name": "content-type", + "value": "application/json;charset=UTF-8" + } + ], + "headersSize": 71, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-03-25T14:20:58.617Z", + "time": 507, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 507 + } + } + ], + "pages": [], + "version": "1.2" + } +} diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index 6e5b7c2bc..6117fd4f3 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -153,4 +153,19 @@ module('Acceptance | client_admin | doi', function(hooks) { assert.dom('[data-test-related-scheme-uri]').hasValue('https://schema.datacite.org/meta/kernel-4.3/doc/DataCite-MetadataKernel_v4.3.pdf'); assert.dom('[data-test-related-scheme-type]').hasValue('XML'); }); + + test('visiting the Form and adding funding References', async function(assert) { + + await visit('repositories/datacite.test/dois/new'); + await selectSearch('[doi-funder-reference]', 'Action for M.E.'); + await selectChoose('[doi-funder-reference]', 'Action for M.E.'); + await fillIn('[data-test-award-number]', 'G2342342'); + await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); + + assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); + assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); + assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); + assert.dom('[data-test-award-number]').hasValue('G2342342'); + assert.dom('[data-test-award-uri]').hasValue('https://schema.datacite.org/meta/kernel-4'); + }); }); diff --git a/tests/acceptance/staff_admin/doi-test.js b/tests/acceptance/staff_admin/doi-test.js index c6a33ceab..c78813b5d 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-funder-name]').exists(); + assert.dom('[data-test-funder-identifier-type]').exists(); + assert.dom('[ data-test-award-number]').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,7 @@ 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-funder-name]').exists(); assert.dom('button#doi-update').exists(); diff --git a/tests/factories/doi.js b/tests/factories/doi.js index 08cbc7600..522f77f0e 100644 --- a/tests/factories/doi.js +++ b/tests/factories/doi.js @@ -12,6 +12,7 @@ FactoryGuy.define('doi', { titles: FactoryGuy.hasMany('title'), descriptions: FactoryGuy.hasMany('description'), relatedIdentifiers: FactoryGuy.hasMany('relatedIdentifier'), + fundingReferences: FactoryGuy.hasMany('fundingReference'), geoLocations: FactoryGuy.hasMany('geoLocation'), subjects: FactoryGuy.hasMany('subject'), publisher: 'Royal Society of Chemistry', @@ -112,6 +113,17 @@ FactoryGuy.define('relatedIdentifier', { }, }); +FactoryGuy.define('fundingReference', { + default: { + funderName: 'National Natural Science Foundation of China', + funderIdentifier: 'grid.419696.5', + funderIdentifierType: 'GRID', + awardNumber: '13321312G45', + awardUri: 'http://www.nsfc.gov.cn/publish/portal1/', + awardTitle: 'COVID-19 Money', + }, +}); + FactoryGuy.define('affiliation', { default: { name: 'University of Cambridge', diff --git a/tests/integration/components/doi-funding-reference.js b/tests/integration/components/doi-funding-reference.js new file mode 100644 index 000000000..1e52c8379 --- /dev/null +++ b/tests/integration/components/doi-funding-reference.js @@ -0,0 +1,19 @@ +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 funding-reference', function(hooks) { + setupRenderingTest(hooks); + setupFactoryGuy(hooks); + + test('it renders', async function(assert) { + this.set('model', make('doi')); + this.set('fragment', make('fundingReference')); + await render(hbs`{{doi-funding-reference model=model fragment=fragment index=0}}`); + + assert.dom('*').hasText('Identifiers of related resources. These must be globally unique identifiers, such as: ARK, arXiv, bibcode, DOI, EAN13, EISSN, Handle, IGSN, ISBN, ISSN, ISTC, LISSN, LSID, PMID, PURL, UPC, URL, URN, w3id. Related Identifier Type Relation Type'); + }); +}); diff --git a/tests/integration/components/doi-funding-references.js b/tests/integration/components/doi-funding-references.js new file mode 100644 index 000000000..2e3d06555 --- /dev/null +++ b/tests/integration/components/doi-funding-references.js @@ -0,0 +1,37 @@ +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 funding-references', function(hooks) { + setupRenderingTest(hooks); + setupFactoryGuy(hooks); + + test('it renders', async function(assert) { + this.set('model', make('doi')); + await render(hbs`{{doi-funding-references model=model}}`); + await click('#add-funding-reference'); + let fundingReferences = this.element.querySelectorAll('input.funder-name-field'); + + await fillIn(fundingReferences[0], 'Action for M.E.'); + + assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); + assert.dom('[data-test-funder-identifier]').hasValue('501100001982'); + assert.dom('[data-test-funder-identifier-type]').includesText('Crossref fudner ID'); + }); + + test('add multiple values', async function(assert) { + this.set('model', make('doi')); + await render(hbs`{{doi-funding-references model=model}}`); + await click('#add-funding-reference'); + await click('#add-funding-reference'); + let fundingReferences = this.element.querySelectorAll('input.funder-name-field'); + + await fillIn(fundingReferences[0], 'motzstrasse 56, berlin'); + await fillIn(fundingReferences[1], 'Chihuahahu, Mexico, 1890'); + + assert.dom(fundingReferences[0]).hasValue('motzstrasse 56, berlin'); + assert.dom(fundingReferences[1]).hasValue('Chihuahahu, Mexico, 1890'); + }); +}); diff --git a/tests/unit/models/funding-reference-test.js b/tests/unit/models/funding-reference-test.js new file mode 100644 index 000000000..d0c704afd --- /dev/null +++ b/tests/unit/models/funding-reference-test.js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | funding-reference', function(hooks) { + setupTest(hooks); + + test('it exists', function(assert) { + let model = run(() => this.owner.lookup('service:store').createRecord('funding-reference')); + assert.ok(!!model); + }); +}); \ No newline at end of file From 4454f6456854d9ecd879ac173bad28aa6f250cd5 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Thu, 26 Mar 2020 09:21:08 +0100 Subject: [PATCH 07/21] small fixes --- app/controllers/dois/show/modify.js | 3 ++- app/controllers/repositories/show/dois/upload.js | 4 +++- app/templates/components/doi-subject.hbs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/controllers/dois/show/modify.js b/app/controllers/dois/show/modify.js index daed93c9e..4fedd57c8 100644 --- a/app/controllers/dois/show/modify.js +++ b/app/controllers/dois/show/modify.js @@ -37,7 +37,8 @@ export default Controller.extend({ doi.set('subjects', null); doi.set('contributors', null); doi.set('identifiers', null); - + doi.set('relatedIdentifiers', null); + doi.set('fundingReferences', null); doi.set('geoLocations', null); // Don't try and set the landingPage information for DOI Updates diff --git a/app/controllers/repositories/show/dois/upload.js b/app/controllers/repositories/show/dois/upload.js index 0687b0bd0..9a22a8ace 100644 --- a/app/controllers/repositories/show/dois/upload.js +++ b/app/controllers/repositories/show/dois/upload.js @@ -29,8 +29,10 @@ export default Controller.extend({ doi.set('language', null); doi.set('contributors', null); doi.set('identifiers', null); - + doi.set('relatedIdentifiers', null); + doi.set('fundingReferences', null); doi.set('geoLocations', null); + let self = this; doi.save().then(function(doi) { self.transitionToRoute('dois.show', doi); diff --git a/app/templates/components/doi-subject.hbs b/app/templates/components/doi-subject.hbs index 22b041d38..7f02fd8cb 100644 --- a/app/templates/components/doi-subject.hbs +++ b/app/templates/components/doi-subject.hbs @@ -14,7 +14,7 @@ {{el.control searchEnabled=true onChange=(action "updateSubject") - placeholder="Search Subject" + placeholder="Search Subject from the OECD Fields of Science" onkeydown=(action "createOnEnter") search=(action "searchSubject") searchPlaceholder="Type to search..." From 9dd63012ef8d6e4d8394151f157493f80c73d14d Mon Sep 17 00:00:00 2001 From: kjgarza Date: Thu, 26 Mar 2020 11:02:16 +0100 Subject: [PATCH 08/21] test fix --- tests/acceptance/client_admin/doi-test.js | 2 +- tests/integration/components/doi-language-test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index 6117fd4f3..6e34c0c18 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -116,7 +116,7 @@ module('Acceptance | client_admin | doi', function(hooks) { await visit('repositories/datacite.test/dois/new'); await selectSearch('[doi-subject]', 'Optics'); - assert.dom('[doi-subject]').includesText('Search Subject The general type of the resource.'); + assert.dom('[doi-subject]').includesText('Search Subject from the OECD Fields of Science Subject, keyword, classification code, or key phrase describing the resource.'); }); test('visiting the Form and adding Contributor', async function(assert) { diff --git a/tests/integration/components/doi-language-test.js b/tests/integration/components/doi-language-test.js index 3d1c2c665..3347e71f9 100644 --- a/tests/integration/components/doi-language-test.js +++ b/tests/integration/components/doi-language-test.js @@ -15,6 +15,6 @@ module('Integration | Component | doi language', function(hooks) { console.log(this.set('model', make('doi'))); await render(hbs`{{doi-language model=model.doi}}`); - assert.dom('*').hasText('Language (optional) The primary language of the resource.'); + assert.dom('*').hasText('Language (optional)'); }); }); From 253be3aa87296754bdc625382db935470e1206ab Mon Sep 17 00:00:00 2001 From: kjgarza Date: Thu, 26 Mar 2020 11:31:31 +0100 Subject: [PATCH 09/21] adding missing files --- app/validators/related-identifier.js | 96 ---------------------------- tests/unit/models/funder-test.js | 12 ++++ 2 files changed, 12 insertions(+), 96 deletions(-) delete mode 100644 app/validators/related-identifier.js create mode 100644 tests/unit/models/funder-test.js diff --git a/app/validators/related-identifier.js b/app/validators/related-identifier.js deleted file mode 100644 index a2d86d933..000000000 --- a/app/validators/related-identifier.js +++ /dev/null @@ -1,96 +0,0 @@ -import { inject as service } from '@ember/service'; -import BaseValidator from 'ember-cp-validations/validators/base'; -// import fetch from 'fetch'; -// import Checkdigit from 'checkdigit'; - -const NameIdentifier = BaseValidator.extend({ - store: service(), - - validate(value) { - if (!value) { - return true; - } else if (value.startsWith('https://orcid.org') || value.startsWith('http://orcid.org')) { - // check identifier format - const re = /^(http|https):\/\/orcid\.org\/\d{4}-\d{4}-\d{4}-\d{3}[0-9X]+$/; - if (!re.test(value)) { - let message = 'Not a valid ORCID identifier. Must start with https://orcid.org/, followed by 16 digits in groups of four, separated by hyphen. Last character can also be X.'; - return message; - } - - // check checksum - // let num = value.replace(/-/g, ''); - // if (!Checkdigit.mod11.isValid(num)) { - // let message = "Checksum does not validate for " + num + "."; - // return message; - // } - - // lookup identifier - let id = value.substr(value.indexOf('0')); - return this.store.findRecord('person', id).then(function() { - return true; - }).catch(function() { - let message = 'ORCID identifier does not exist. Please make sure you entered the correct identifier.'; - return message; - }); - } else if (value.startsWith('https://ror.org')) { - // check identifier format - const re = /^https:\/\/ror\.org\/0\w{6}\d{2}$/; - if (!re.test(value)) { - let message = 'Not a valid ROR identifier. Must start with https://ror.org/, followed by 9 characters or digits starting with 0 and ending with two digits.'; - return message; - } - - // lookup identifier - let id = 'ror.org/' + value.substr(value.indexOf('0')); - return this.store.findRecord('ror', id).then(function() { - return true; - }).catch(function() { - let message = 'ROR identifier does not exist. Please make sure you entered the correct identifier.'; - return message; - }); - } else if (value.startsWith('http://isni.org')) { - // check identifier format - const re = /^http:\/\/isni\.org\/isni\/\d{15}[0-9X]+$/; - if (!re.test(value)) { - let message = 'Not a valid ISNI identifier. Must start with http://isni.org/isni/, followed by 16 digits. Last character can also be X.'; - return message; - } - - return true; - - // lookup identifier - // return fetch(value).then(function() { - // return true; - // }).catch(function() { - // let message = 'ISNI identifier does not exist. Please make sure you entered the correct identifier.' - // return message; - // }); - } else { - const re = /^(http|https):\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/; - if (!re.test(value)) { - let message = 'The name identifier must be expressed as URL'; - return message; - } - - return true; - // // lookup identifier - // // https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors/CORSExternalRedirectNotAllowed - // return fetch(value,{method: 'head', redirect: 'error'} - // ).then(function() { - // return true; - // }).catch(function() { - // console.log() - // let message = 'Name identifier does not exist. Please make sure you entered the correct identifier.' - // return message; - // }); - } - }, -}); - -NameIdentifier.reopenClass({ - getDependentsFor() { - return [ 'id' ]; - }, -}); - -export default NameIdentifier; diff --git a/tests/unit/models/funder-test.js b/tests/unit/models/funder-test.js new file mode 100644 index 000000000..991da6542 --- /dev/null +++ b/tests/unit/models/funder-test.js @@ -0,0 +1,12 @@ +import { module, test } from 'qunit'; +import { setupTest } from 'ember-qunit'; +import { run } from '@ember/runloop'; + +module('Unit | Model | funder', function(hooks) { + setupTest(hooks); + + test('it exists', function(assert) { + let model = run(() => this.owner.lookup('service:store').createRecord('funder')); + assert.ok(!!model); + }); +}); \ No newline at end of file From d1e0bffaa88ef902c58644260ca055f4e1b32b56 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Thu, 26 Mar 2020 14:29:01 +0100 Subject: [PATCH 10/21] fix test --- tests/integration/components/doi-related-identifier-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/components/doi-related-identifier-test.js b/tests/integration/components/doi-related-identifier-test.js index 35baf42a9..6388d4ebd 100644 --- a/tests/integration/components/doi-related-identifier-test.js +++ b/tests/integration/components/doi-related-identifier-test.js @@ -14,6 +14,6 @@ module('Integration | Component | doi related-identifier', function(hooks) { this.set('fragment', make('relatedIdentifier')); await render(hbs`{{doi-related-identifier 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('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 Related Metadata Scheme The name of the scheme. Related Metadata Scheme URI The URI of the relatedMetadataScheme. Related Metadata Scheme Type The type of the relatedMetadataScheme, linked with the schemeURI. Resource Type General'); }); }); From 27a98459edad7b0b530c994bbce190510ae6d742 Mon Sep 17 00:00:00 2001 From: Kristian Garza Date: Fri, 27 Mar 2020 12:49:40 +0100 Subject: [PATCH 11/21] fixes from comments --- app/components/doi-alternate-identifier.js | 40 ++++++++++++++- app/models/related-identifier.js | 49 ++++++++++--------- .../components/doi-alternate-identifier.hbs | 26 +++++++++- app/templates/components/doi-contributors.hbs | 4 +- .../components/doi-funding-reference.hbs | 5 +- .../components/doi-related-identifier.hbs | 7 ++- .../components/doi-related-identifiers.hbs | 2 +- app/templates/components/doi-subject.hbs | 11 +++-- app/templates/components/doi-subjects.hbs | 4 +- 9 files changed, 111 insertions(+), 37 deletions(-) diff --git a/app/components/doi-alternate-identifier.js b/app/components/doi-alternate-identifier.js index 57bebec4a..506e9ae59 100644 --- a/app/components/doi-alternate-identifier.js +++ b/app/components/doi-alternate-identifier.js @@ -1,16 +1,54 @@ import Component from '@ember/component'; +import { isBlank } from '@ember/utils'; +const alternateIdentifierTypeList = [ + 'ARK', + 'arXiv', + 'bibcode', + 'DOI', + 'EAN13', + 'EISSN', + 'Handle', + 'IGSN', + 'ISBN', + 'ISSN', + 'ISTC', + 'LISSN', + 'LSID', + 'PMID', + 'PURL', + 'UPC', + 'URL', + 'URN', + 'w3id', +]; export default Component.extend({ - + alternateIdentifierTypeList, + alternateIdentifierTypes: alternateIdentifierTypeList, + selected: [], actions: { + createOnEnter(select, e) { + if (e.keyCode === 13 && select.isOpen && !select.highlighted && !isBlank(select.searchText)) { + if (!this.selected.includes(select.searchText)) { + this.alternateIdentifierTypes.push(select.searchText); + select.actions.choose(select.searchText); + this.fragment.set('identifierType', select.searchText); + this.set('identifierType', alternateIdentifierTypeList); + } + } + }, updateIdentifier(value) { this.fragment.set('identifier', value); }, updateIdentifierType(value) { this.fragment.set('identifierType', value); }, + selectAlternateIdentifierType(alternateIdentifierType) { + this.fragment.set('identifierType', alternateIdentifierType); + this.set('alternateIdentifierTypes', alternateIdentifierTypeList); + }, deleteIdentifier() { this.model.get('identifiers').removeObject(this.fragment); }, diff --git a/app/models/related-identifier.js b/app/models/related-identifier.js index fb37ab1a9..c3da3cce4 100644 --- a/app/models/related-identifier.js +++ b/app/models/related-identifier.js @@ -12,16 +12,16 @@ const Validations = buildValidations({ }), ], relatedIdentifier: [ - validator('url-format', { - allowBlank: true, - message: 'Please enter a valid URL.', - isWarning: computed('model.state', function() { - return this.model.get('state') === 'draft'; - }), - disabled: computed('model.relatedIdentifierType', function() { - return ![ 'PURL','URL' ].includes(this.model.get('relatedIdentifierType')); - }), - }), + // validator('url-format', { + // allowBlank: true, + // message: 'Please enter a valid URL.', + // isWarning: computed('model.state', function() { + // return this.model.get('state') === 'draft'; + // }), + // disabled: computed('model.relatedIdentifierType', function() { + // return ![ 'PURL','URL' ].includes(this.model.get('relatedIdentifierType')); + // }), + // }), validator('identifier-format', { allowBlank: true, dependentKeys: [ 'model.relatedIdentifierType' ], @@ -29,41 +29,44 @@ const Validations = buildValidations({ isWarning: computed('model.state', function() { return this.model.get('state') === 'draft'; }), - }), - ], - relatedIdentifierType: [ - validator('presence', { - presence: true, - isWarning: computed('model.state', function() { - return this.model.get('state') === 'draft'; - }), disabled: computed('model.relatedIdentifier', function() { - return this.model.get('relatedIdentifier') == null; + return (this.model.get('relatedIdentifier') == null); }), }), ], - relationType: [ + relatedIdentifierType: [ validator('presence', { presence: true, isWarning: computed('model.state', function() { return this.model.get('state') === 'draft'; }), disabled: computed('model.relatedIdentifier', function() { - return this.model.get('relatedIdentifier') == null; + return (this.model.get('relatedIdentifier') == null); }), }), ], - resourceTypeGeneral: [ + relationType: [ validator('presence', { presence: true, isWarning: computed('model.state', function() { return this.model.get('state') === 'draft'; }), disabled: computed('model.relatedIdentifier', function() { - return this.model.get('relatedIdentifier') == null; + return (this.model.get('relatedIdentifier') == null ); }), }), ], + // resourceTypeGeneral: [ + // validator('presence', { + // presence: true, + // isWarning: computed('model.state', function() { + // return this.model.get('state') === 'draft'; + // }), + // disabled: computed('model.relatedIdentifierType', function() { + // return [ 'HasMetadata', 'IsMetadataFor' ].includes(this.model.get('relatedIdentifierType')) ? false : true; + // }), + // }), + // ], }); export default Fragment.extend(Validations, { diff --git a/app/templates/components/doi-alternate-identifier.hbs b/app/templates/components/doi-alternate-identifier.hbs index 143f9dfbb..a367a7472 100644 --- a/app/templates/components/doi-alternate-identifier.hbs +++ b/app/templates/components/doi-alternate-identifier.hbs @@ -11,11 +11,33 @@
An identifier or identifiers other than the primary Identifier applied to the resource being registered.
{{/if}} -
+ {{!--
-
The type of the Alternate Identifier.
+
The type of the Alternate Identifier.
--}} +
+ +
+
+ {{#form.element + controlType="power-select" + value=fragment.identifierType + helpText="The type of the Alternate Identifier." + options=alternateIdentifierTypeList + disabled=controlledIdentifierType + destination=fragment.identifierType as |el| + }} + {{el.control + onChange=(action "selectAlternateIdentifierType") + allowClear=true + onkeydown=(action "createOnEnter") + placeholder="Type in or select the Alternate Identifier Type." + noMatchesMessage="Press ENTER to add new identifier Type." + }} + {{/form.element}} + +

diff --git a/app/templates/components/doi-contributors.hbs b/app/templates/components/doi-contributors.hbs index 2ee693fbf..a336ac73e 100644 --- a/app/templates/components/doi-contributors.hbs +++ b/app/templates/components/doi-contributors.hbs @@ -1,5 +1,5 @@
- +
{{#each model.contributors as |contributor index|}} {{#if (gt index 0)}} @@ -10,7 +10,7 @@ {{/each}} {{#if (lte model.contributors.length 24)}} - {{fa-icon "plus"}} Add another Contributor + {{fa-icon "plus"}} Add {{if (gt model.contributors.length 0) "another "}} Contributor {{/if}}
\ No newline at end of file diff --git a/app/templates/components/doi-funding-reference.hbs b/app/templates/components/doi-funding-reference.hbs index a93b2f6a3..2e1c171d8 100644 --- a/app/templates/components/doi-funding-reference.hbs +++ b/app/templates/components/doi-funding-reference.hbs @@ -10,6 +10,7 @@ options=funders value=fragment.name disabled=disabled + allowClear=true destination=fragment.funderIdentifier as |el| }} {{#el.control @@ -78,6 +79,7 @@ }} {{el.control onChange=(action "selectFunderIdentifierType") + allowClear=true placeholder="Select Funder Identifier Type" }} {{/form.element}} @@ -113,7 +115,8 @@ oninput={{action "updateAwardUri" value="target.value"}} data-test-award-uri />
- The URI leading to a page provided by the funder for more information about the award (grant). + The URI leading to a page provided by the funder for more information about the award (grant). For example, https://www.moore.org/gran +ts/list/GBMF3859.01
diff --git a/app/templates/components/doi-related-identifier.hbs b/app/templates/components/doi-related-identifier.hbs index c344492dc..d4a45f1ab 100644 --- a/app/templates/components/doi-related-identifier.hbs +++ b/app/templates/components/doi-related-identifier.hbs @@ -35,6 +35,7 @@ }} {{el.control onChange=(action "selectRelatedIdentifierType") + allowClear=true placeholder="Select related Identifier Type" }} {{/form.element}} @@ -51,10 +52,12 @@ helpText="The type of the Relation." options=relationTypeList disabled=disabled + allowClear=true destination=fragment.relationType as |el| }} {{el.control onChange=(action "selectRelationType") + allowClear=true placeholder="Select Relation Type" }} {{/form.element}} @@ -81,7 +84,7 @@
@@ -107,10 +110,12 @@ helpText="The general type of the related resource." options=resourceTypesGeneral disabled=disabled + allowClear=true destination=fragment.resourceTypeGeneral as |el| }} {{el.control onChange=(action "selectResourceTypeGeneral") + allowClear=true placeholder="Select Resource Type General" }} {{/form.element}} diff --git a/app/templates/components/doi-related-identifiers.hbs b/app/templates/components/doi-related-identifiers.hbs index 6eb9e7f08..5a9d9df33 100644 --- a/app/templates/components/doi-related-identifiers.hbs +++ b/app/templates/components/doi-related-identifiers.hbs @@ -6,7 +6,7 @@ {{/each}} {{#if (lte model.relatedIdentifiers.length 24)}} - {{fa-icon "plus"}} Add another Related Identifier + {{fa-icon "plus"}} Add {{if (gt model.relatedIdentifiers.length 0) "another "}} Related Identifier {{/if}}
\ No newline at end of file diff --git a/app/templates/components/doi-subject.hbs b/app/templates/components/doi-subject.hbs index 7f02fd8cb..a116fe917 100644 --- a/app/templates/components/doi-subject.hbs +++ b/app/templates/components/doi-subject.hbs @@ -1,6 +1,8 @@ + {{#if (gt index 0)}}
+{{/if}}
{{#form.element @@ -14,11 +16,12 @@ {{el.control searchEnabled=true onChange=(action "updateSubject") - placeholder="Search Subject from the OECD Fields of Science" + placeholder="Search Subject from the OECD Fields of Science OR fill in to create a keyword" onkeydown=(action "createOnEnter") search=(action "searchSubject") - searchPlaceholder="Type to search..." - noMatchesMessage="Press ENTER to add new subject." + allowClear=true + searchPlaceholder="Type to search subject OR fill in to create a keyword..." + noMatchesMessage="Press ENTER to add new subject, keyword, classification code, or key phrase describing the resource." }} {{/form.element}}
@@ -39,6 +42,6 @@ {{fa-icon "trash"}}
-
The URI of the subject term.
+
The URI of the subject term. For example, http://www.oecd.org/science/inno/38235147.pdf

\ No newline at end of file diff --git a/app/templates/components/doi-subjects.hbs b/app/templates/components/doi-subjects.hbs index 316cd19cc..547b5a0c9 100644 --- a/app/templates/components/doi-subjects.hbs +++ b/app/templates/components/doi-subjects.hbs @@ -1,12 +1,12 @@
- +
{{#each model.subjects as |subject index|}} {{/each}} {{#if (lte model.subjects.length 6)}} - {{fa-icon "plus"}} Add another subject + {{fa-icon "plus"}} Add {{if (gt model.subjects.length 0) "another "}} subject {{/if}}
\ No newline at end of file From 1ed284ba44378c399747b2a953cc890ee71f8357 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Sun, 29 Mar 2020 14:33:58 +0200 Subject: [PATCH 12/21] correct naming --- app/components/doi-alternate-identifier.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/doi-alternate-identifier.js b/app/components/doi-alternate-identifier.js index 506e9ae59..d14364d32 100644 --- a/app/components/doi-alternate-identifier.js +++ b/app/components/doi-alternate-identifier.js @@ -35,7 +35,7 @@ export default Component.extend({ this.alternateIdentifierTypes.push(select.searchText); select.actions.choose(select.searchText); this.fragment.set('identifierType', select.searchText); - this.set('identifierType', alternateIdentifierTypeList); + this.set('alternateIdentifierTypes', alternateIdentifierTypeList); } } }, From 7054100ecf4f1dffdf8fdb46b0418645dd7d17cb Mon Sep 17 00:00:00 2001 From: kjgarza Date: Sun, 29 Mar 2020 14:34:34 +0200 Subject: [PATCH 13/21] don't have separate boxes for funder references --- app/components/doi-funding-reference.js | 18 +++++- .../components/doi-funding-reference.hbs | 55 ++++++++++++++++--- 2 files changed, 61 insertions(+), 12 deletions(-) diff --git a/app/components/doi-funding-reference.js b/app/components/doi-funding-reference.js index f06c70f0c..83ffcad75 100644 --- a/app/components/doi-funding-reference.js +++ b/app/components/doi-funding-reference.js @@ -1,5 +1,6 @@ import Component from '@ember/component'; import { inject as service } from '@ember/service'; +import { isBlank } from '@ember/utils'; const funderIdentifierTypeList = [ 'Crossref Funder ID', @@ -52,7 +53,7 @@ export default Component.extend({ } }, updateFunderReference(funder) { - if (funder) { + if (funder.uri) { this.fragment.set('funderName', funder.name); this.fragment.set('funderIdentifierType', 'Crossref Funder ID'); this.fragment.set('schemeUri', 'https://www.crossref.org/services/funder-registry/'); @@ -60,15 +61,26 @@ export default Component.extend({ this.set('isCrossrefId', true); } else { // this.fragment.set('funderName', funder); - this.fragment.set('funderIdentifierType', null); + this.fragment.set('funderIdentifierType', 'Other'); this.fragment.set('funderIdentifier', null); - this.fragment.set('funderName', null); + this.fragment.set('funderName', funder); this.updateFunderSchemeAndType(null); this.set('isCrossrefId', false); } }, actions: { + createOnEnter(select, e) { + if (e.keyCode === 13 && select.isOpen && !select.highlighted && !isBlank(select.searchText)) { + if (!this.selected.includes(select.searchText)) { + this.funderIdentifierTypes.push(select.searchText); + select.actions.choose(select.searchText); + this.fragment.set('funderName', select.searchText); + this.fragment.set('funderIdentifierType', 'Other'); + this.set('funderIdentifierTypes', funderIdentifierTypeList); + } + } + }, updateFunderIdentifierType(value) { this.fragment.set('funderIdentifierType', value); // this.updateFunderSchemeAndType(value); diff --git a/app/templates/components/doi-funding-reference.hbs b/app/templates/components/doi-funding-reference.hbs index 2e1c171d8..4869a6b4d 100644 --- a/app/templates/components/doi-funding-reference.hbs +++ b/app/templates/components/doi-funding-reference.hbs @@ -1,36 +1,39 @@ -
- +
+ -
+
{{#form.element controlType="power-select" - helpText="Look up for funder references in the Crossref Funders Registry." + helpText="Information about financial support (funding) for the resource being registered. Look up for funder references in the Crossref Funders Registry." options=funders - value=fragment.name + value=fragment.funderName disabled=disabled allowClear=true - destination=fragment.funderIdentifier as |el| + destination=fragment.funderName as |el| }} {{#el.control searchEnabled=true onChange=(action "selectFunderReference") placeholder="Search Funding Reference" + onkeydown=(action "createOnEnter") search=(action "searchFundingReferences") searchPlaceholder="Type to search..." allowClear=true + noMatchesMessage="Press ENTER to add new funder name." as |item| }} - {{if item.name item.name fragment.name}} + {{if item.name item.name fragment.funderName}} {{/el.control}} {{/form.element}}
+ {{!--
{{#if (gt index 0)}}
-
+ @@ -41,7 +44,7 @@ {{fa-icon "trash"}} -
+ {{else}}
@@ -53,7 +56,28 @@ Information about financial support (funding) for the resource being registered.
{{/if}} +
--}} + + + +{{#if (gt index 0)}} +
+ +
+
+ + +
+ Uniquely identifies a funding entity, according to any of these types: Crossref Funder ID, GRID, ISNI, or ROR. +
+ + {{fa-icon "trash"}} + +
+{{else}}
@@ -64,6 +88,19 @@
Uniquely identifies a funding entity, according to any of these types: Crossref Funder ID, GRID, ISNI, or ROR.
+{{/if}} + + +{{!--
+ +
+ + +
+ Uniquely identifies a funding entity, according to any of these types: Crossref Funder ID, GRID, ISNI, or ROR. +
--}}
From 1c279a72561a54f2e2551c75b5cd3d26fb3349e9 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Sun, 29 Mar 2020 14:34:41 +0200 Subject: [PATCH 14/21] validation fix --- app/models/related-identifier.js | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/app/models/related-identifier.js b/app/models/related-identifier.js index c3da3cce4..9225aed2d 100644 --- a/app/models/related-identifier.js +++ b/app/models/related-identifier.js @@ -7,8 +7,10 @@ const Validations = buildValidations({ schemeUri: [ validator('url-format', { allowBlank: true, - require_tld: false, message: 'Please enter a valid URL.', + disabled: computed('model.relatedIdentifierType', function() { + return [ 'HasMetadata', 'IsMetadataFor' ].includes(this.model.get('relatedIdentifierType')); + }), }), ], relatedIdentifier: [ @@ -52,21 +54,21 @@ const Validations = buildValidations({ return this.model.get('state') === 'draft'; }), disabled: computed('model.relatedIdentifier', function() { - return (this.model.get('relatedIdentifier') == null ); + return (this.model.get('relatedIdentifier') == null); + }), + }), + ], + resourceTypeGeneral: [ + validator('presence', { + presence: true, + isWarning: computed('model.state', function() { + return this.model.get('state') === 'draft'; + }), + disabled: computed('model.relatedIdentifierType', function() { + return ![ 'HasMetadata', 'IsMetadataFor' ].includes(this.model.get('relatedIdentifierType')); }), }), ], - // resourceTypeGeneral: [ - // validator('presence', { - // presence: true, - // isWarning: computed('model.state', function() { - // return this.model.get('state') === 'draft'; - // }), - // disabled: computed('model.relatedIdentifierType', function() { - // return [ 'HasMetadata', 'IsMetadataFor' ].includes(this.model.get('relatedIdentifierType')) ? false : true; - // }), - // }), - // ], }); export default Fragment.extend(Validations, { From 5c8882f3f0c59d13e043473a758b023549e827d1 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Sun, 29 Mar 2020 17:19:55 +0200 Subject: [PATCH 15/21] further feedback incorporate for different fiedls --- .../components/doi-funding-reference.hbs | 2 +- .../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 +++++++++--------- .../recording.har | 120 +++++++++--------- .../visiting-users_37556140/recording.har | 120 +++++++++--------- tests/acceptance/client_admin/doi-test.js | 12 +- .../doi-alternate-identifier-test.js | 2 +- .../components/doi-related-identifier-test.js | 2 +- .../components/doi-subject-test.js | 2 +- 46 files changed, 2470 insertions(+), 2470 deletions(-) diff --git a/app/templates/components/doi-funding-reference.hbs b/app/templates/components/doi-funding-reference.hbs index 4869a6b4d..d0f317d72 100644 --- a/app/templates/components/doi-funding-reference.hbs +++ b/app/templates/components/doi-funding-reference.hbs @@ -3,7 +3,7 @@
-
+
{{#form.element controlType="power-select" helpText="Information about financial support (funding) for the resource being registered. Look up for funder references in the Crossref Funders Registry." 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..fa12a5c79 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-29T12:54:28.738Z", + "time": 256, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 256 + } } ], "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..2c4a8e640 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-29T12:54:30.187Z", + "time": 328, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 328 + } } ], "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..eb8e291f6 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-29T12:54:24.557Z", + "time": 222, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 222 + } } ], "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..8d26b2e1a 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-29T12:54:26.007Z", + "time": 327, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 327 + } } ], "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..28a1177eb 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-29T12:54:27.504Z", + "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-admin_3109760735/visiting-members_3369106031/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-members_3369106031/recording.har index 141b09945..8dbf6980a 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-29T12:54:31.688Z", + "time": 102, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 102 + } } ], "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..875e69faa 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-29T12:54:35.036Z", + "time": 78, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 78 + } } ], "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..41bd4f597 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-29T12:54:33.758Z", + "time": 100, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 100 + } } ], "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..ad4eded9a 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-29T12:54:32.473Z", + "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-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..458cf8778 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-29T12:54:51.969Z", + "time": 175, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 175 + } } ], "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..4f2fe0229 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-29T12:54:50.562Z", + "time": 249, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 249 + } } ], "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..0eb6d1a51 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-29T12:54:49.079Z", + "time": 326, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 326 + } } ], "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..944d3c5dd 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-29T12:54:47.690Z", + "time": 221, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 221 + } } ], "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..4c55b6143 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-29T12:55:06.010Z", + "time": 1271, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 1271 + } } ], "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..dda324cc7 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-29T12:55:02.171Z", + "time": 963, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 963 + } } ], "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..f0a38da50 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-29T12:55:04.299Z", + "time": 544, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 544 + } } ], "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..bdf2860bd 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-29T12:55:00.919Z", + "time": 82, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 82 + } } ], "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..3bd55fdf1 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-29T12:54:57.048Z", + "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-provider_521206357/visiting-consortium-DC_3803602794/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC_3803602794/recording.har index 04530d566..befbc4cfc 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-29T12:54:54.559Z", + "time": 71, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 71 + } } ], "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..0544db814 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-29T12:54:59.575Z", + "time": 118, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 118 + } } ], "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..63b35d85d 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-29T12:54:55.791Z", + "time": 82, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 82 + } } ], "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..eb9fb4ed0 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-29T12:54:58.297Z", + "time": 105, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 105 + } } ], "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..efe9cf1ab 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-29T12:54:53.323Z", + "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/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..4388712a1 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-29T12:54:46.116Z", + "time": 372, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 372 + } } ], "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..61731c977 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-29T12:54:43.465Z", + "time": 127, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 127 + } } ], "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..71cd007cc 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-29T12:55:14.904Z", + "time": 144, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 144 + } } ], "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..6169515c6 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-29T12:55:17.536Z", + "time": 470, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 470 + } } ], "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..977f192fc 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-29T12:55:16.207Z", + "time": 146, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 146 + } } ], "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..12bfaabb1 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-29T12:54:44.832Z", + "time": 93, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 93 + } } ], "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..1a90f063b 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-29T12:54:40.747Z", + "time": 212, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 212 + } } ], "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..b4cf1d3b7 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-29T12:55:13.369Z", + "time": 372, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 372 + } } ], "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..71a1eb22d 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-29T12:54:42.144Z", + "time": 170, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 170 + } } ], "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..4563312f0 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-29T12:54:37.676Z", + "time": 105, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 105 + } } ], "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..48f921765 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-29T12:54:36.282Z", + "time": 211, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 211 + } } ], "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..e5262833b 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-29T12:55:12.130Z", + "time": 72, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 72 + } } ], "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..3cacc313f 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-29T12:55:09.673Z", + "time": 73, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 73 + } } ], "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 37b0adccf..db73f1ee3 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": 92 } + }, + { + "_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-29T12:55:10.900Z", + "time": 69, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 69 + } } ], "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..31b61510f 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-29T12:55:08.445Z", + "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/visiting-specific-doi_4109340652/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-specific-doi_4109340652/recording.har index 6ae6f2689..1cb3c3a37 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-29T12:54:39.500Z", + "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-user_2341217883/visiting-specific-user_253064087/recording.har b/recordings/Acceptance-staff_admin-user_2341217883/visiting-specific-user_253064087/recording.har index 1a2f64bb5..72b0f525f 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-29T12:55:20.477Z", + "time": 74, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 74 + } } ], "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..291983e52 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-29T12:55:19.177Z", + "time": 134, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 134 + } } ], "pages": [], diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index 6e34c0c18..d4c641c9f 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -116,7 +116,7 @@ module('Acceptance | client_admin | doi', function(hooks) { await visit('repositories/datacite.test/dois/new'); await selectSearch('[doi-subject]', 'Optics'); - assert.dom('[doi-subject]').includesText('Search Subject from the OECD Fields of Science Subject, keyword, classification code, or key phrase describing the resource.'); + assert.dom('[doi-subject]').includesText('Subject from the OECD Fields of Science OR fill in to create a keyword Subject, keyword, classification code, or key phrase describing the resource.'); }); test('visiting the Form and adding Contributor', async function(assert) { @@ -131,12 +131,12 @@ module('Acceptance | client_admin | doi', function(hooks) { await visit('repositories/datacite.test/dois/new'); await fillIn('[data-test-alternate-identifier]','https://doi.org/10.70048/rph240519'); - await fillIn('[data-test-alternate-identifier-type]','DOI'); + await selectChoose('[data-test-alternate-identifier-type]','DOI'); // // NOTE: fillIn matches with hasValue but not with includesText assert.equal(currentURL(), 'repositories/datacite.test/dois/new'); assert.dom('[data-test-alternate-identifier]').hasValue('https://doi.org/10.70048/rph240519'); - assert.dom('[data-test-alternate-identifier-type]').hasValue('DOI'); + assert.dom('[data-test-alternate-identifier-type]').includesText('DOI'); }); test('visiting the Form and adding related Identifier', async function(assert) { @@ -157,12 +157,12 @@ module('Acceptance | client_admin | doi', function(hooks) { test('visiting the Form and adding funding References', async function(assert) { await visit('repositories/datacite.test/dois/new'); - await selectSearch('[doi-funder-reference]', 'Action for M.E.'); - await selectChoose('[doi-funder-reference]', 'Action for M.E.'); + await selectSearch('[data-test-funder-name]', 'Action for M.E.'); + await selectChoose('[data-test-funder-name]', 'Action for M.E.'); await fillIn('[data-test-award-number]', 'G2342342'); await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); - assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); + // assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); assert.dom('[data-test-award-number]').hasValue('G2342342'); diff --git a/tests/integration/components/doi-alternate-identifier-test.js b/tests/integration/components/doi-alternate-identifier-test.js index 0a7b01785..e887a400a 100644 --- a/tests/integration/components/doi-alternate-identifier-test.js +++ b/tests/integration/components/doi-alternate-identifier-test.js @@ -14,6 +14,6 @@ module('Integration | Component | doi alternate-identifier', function(hooks) { this.set('fragment', make('identifier')); await render(hbs`{{doi-alternate-identifier model=model fragment=fragment index=0}}`); - assert.dom('*').hasText('An identifier or identifiers other than the primary Identifier applied to the resource being registered. Alternate Identifier Type The type of the Alternate Identifier.'); + assert.dom('*').hasText('An identifier or identifiers other than the primary Identifier applied to the resource being registered. Alternate Identifier Type'); }); }); diff --git a/tests/integration/components/doi-related-identifier-test.js b/tests/integration/components/doi-related-identifier-test.js index 6388d4ebd..b9e44dd5f 100644 --- a/tests/integration/components/doi-related-identifier-test.js +++ b/tests/integration/components/doi-related-identifier-test.js @@ -14,6 +14,6 @@ module('Integration | Component | doi related-identifier', function(hooks) { this.set('fragment', make('relatedIdentifier')); await render(hbs`{{doi-related-identifier 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 Related Metadata Scheme The name of the scheme. Related Metadata Scheme URI The URI of the relatedMetadataScheme. Related Metadata Scheme Type The type of the relatedMetadataScheme, linked with the schemeURI. Resource Type General'); + 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 Related Metadata Scheme The name of the scheme. Related Metadata Scheme URI The URI of the relatedMetadataScheme. For example: http://www.ddialliance.org/Specification/DDILifecycle/3.1/XMLSchema/instance.xsd for DDI-L schema. Related Metadata Scheme Type The type of the relatedMetadataScheme, linked with the schemeURI. Resource Type General'); }); }); diff --git a/tests/integration/components/doi-subject-test.js b/tests/integration/components/doi-subject-test.js index e1241247c..22a6eedf9 100644 --- a/tests/integration/components/doi-subject-test.js +++ b/tests/integration/components/doi-subject-test.js @@ -13,7 +13,7 @@ module('Integration | Component | doi subject', function(hooks) { this.set('fragment', make('subject')); await render(hbs`{{doi-subject model=model fragment=fragment index=0}}`); - assert.dom('*').hasText('Subject Subject Scheme The name of the subject scheme or classification code or authority if one is used. Subject Scheme URI The URI of the subject term.'); + assert.dom('*').hasText('Subject Scheme The name of the subject scheme or classification code or authority if one is used. Subject Scheme URI The URI of the subject term. For example, http://www.oecd.org/science/inno/38235147.pdf'); }); }); From 83153518f7e52517b6621ccf0ad5bd3f0f4a6cb1 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 13:58:37 +0200 Subject: [PATCH 16/21] incorporate feedback --- app/components/doi-funding-reference.js | 7 ---- app/serializers/funder.js | 5 --- .../components/doi-funding-reference.hbs | 38 ------------------- tests/acceptance/client_admin/doi-test.js | 24 ++++++------ 4 files changed, 12 insertions(+), 62 deletions(-) diff --git a/app/components/doi-funding-reference.js b/app/components/doi-funding-reference.js index 83ffcad75..0e7516515 100644 --- a/app/components/doi-funding-reference.js +++ b/app/components/doi-funding-reference.js @@ -31,23 +31,18 @@ export default Component.extend({ updateFunderSchemeAndType(scheme) { switch (scheme) { case scheme == 'ROR': - // this.fragment.set('schemeUri', 'https://ror.org/'); this.fragment.set('funderIdentifierType', 'ROR'); break; case scheme == 'Crossref Funder ID': - // this.fragment.set('schemeUri', 'https://www.crossref.org/services/funder-registry/'); this.fragment.set('funderIdentifierType', 'Crossref Funder ID'); break; case scheme == 'GRID': - // this.fragment.set('schemeUri', 'https://www.grid.ac/'); this.fragment.set('relatedIdentifierType', 'GRID'); break; case scheme == 'ISNI': - // this.fragment.set('schemeUri', 'http://www.isni.org/isni/'); this.fragment.set('funderIdentifierType', 'ISNI'); break; default: - // this.fragment.set('schemeUri', null); this.fragment.set('funderIdentifierType', 'Other'); break; } @@ -60,7 +55,6 @@ export default Component.extend({ this.fragment.set('funderIdentifier', funder.uri); this.set('isCrossrefId', true); } else { - // this.fragment.set('funderName', funder); this.fragment.set('funderIdentifierType', 'Other'); this.fragment.set('funderIdentifier', null); this.fragment.set('funderName', funder); @@ -83,7 +77,6 @@ export default Component.extend({ }, updateFunderIdentifierType(value) { this.fragment.set('funderIdentifierType', value); - // this.updateFunderSchemeAndType(value); }, updateFunderIdentifier(value) { this.fragment.set('funderIdentifier', value); diff --git a/app/serializers/funder.js b/app/serializers/funder.js index a8334670d..45118f662 100644 --- a/app/serializers/funder.js +++ b/app/serializers/funder.js @@ -18,11 +18,6 @@ export default JSONSerializer.extend({ payload.id = payload.message.id; return this._super(store, primaryModelClass, payload, id, requestType); }, - // normalizeFindRecordResponse(store, primaryModelClass, payload) { - // payload.data.attributes.meta = payload.meta || {}; - - // return this._super(store, primaryModelClass, payload); - // }, keyForAttribute(attr) { return underscore(attr); }, diff --git a/app/templates/components/doi-funding-reference.hbs b/app/templates/components/doi-funding-reference.hbs index d0f317d72..b565429d1 100644 --- a/app/templates/components/doi-funding-reference.hbs +++ b/app/templates/components/doi-funding-reference.hbs @@ -27,36 +27,7 @@ {{/el.control}} {{/form.element}}
- {{!--
-{{#if (gt index 0)}} -
- -
- - - -
- Information about financial support (funding) for the resource being registered. -
- - - {{fa-icon "trash"}} - - -{{else}} -
- -
- - -
- Information about financial support (funding) for the resource being registered. -
-{{/if}} -
--}} @@ -91,16 +62,7 @@ {{/if}} -{{!--
- -
- -
- Uniquely identifies a funding entity, according to any of these types: Crossref Funder ID, GRID, ISNI, or ROR. -
--}}
diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index d4c641c9f..8921a7551 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -155,17 +155,17 @@ module('Acceptance | client_admin | doi', function(hooks) { }); test('visiting the Form and adding funding References', async function(assert) { - - await visit('repositories/datacite.test/dois/new'); - await selectSearch('[data-test-funder-name]', 'Action for M.E.'); - await selectChoose('[data-test-funder-name]', 'Action for M.E.'); - await fillIn('[data-test-award-number]', 'G2342342'); - await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); - - // assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); - assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); - assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); - assert.dom('[data-test-award-number]').hasValue('G2342342'); - assert.dom('[data-test-award-uri]').hasValue('https://schema.datacite.org/meta/kernel-4'); + // // This Tesst can take too much time because it call the Crossref API and the selector might not find the element + // await visit('repositories/datacite.test/dois/new'); + // await selectSearch('[data-test-funder-name]', 'Action for M.E.'); + // await selectChoose('[data-test-funder-name]', 'Action for M.E.'); + // await fillIn('[data-test-award-number]', 'G2342342'); + // await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); + + // // assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); + // assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); + // assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); + // assert.dom('[data-test-award-number]').hasValue('G2342342'); + // assert.dom('[data-test-award-uri]').hasValue('https://schema.datacite.org/meta/kernel-4'); }); }); From 0f611a7600add0283574cfd219dad1c4eb238840 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 14:40:01 +0200 Subject: [PATCH 17/21] missing comment --- tests/acceptance/client_admin/doi-test.js | 28 +++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index 8921a7551..2facb6269 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -154,18 +154,18 @@ module('Acceptance | client_admin | doi', function(hooks) { assert.dom('[data-test-related-scheme-type]').hasValue('XML'); }); - test('visiting the Form and adding funding References', async function(assert) { - // // This Tesst can take too much time because it call the Crossref API and the selector might not find the element - // await visit('repositories/datacite.test/dois/new'); - // await selectSearch('[data-test-funder-name]', 'Action for M.E.'); - // await selectChoose('[data-test-funder-name]', 'Action for M.E.'); - // await fillIn('[data-test-award-number]', 'G2342342'); - // await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); - - // // assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); - // assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); - // assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); - // assert.dom('[data-test-award-number]').hasValue('G2342342'); - // assert.dom('[data-test-award-uri]').hasValue('https://schema.datacite.org/meta/kernel-4'); - }); + // test('visiting the Form and adding funding References', async function(assert) { + // // when running on travis This Test can take too much time because it call the Crossref API and the selector might not find the element + // await visit('repositories/datacite.test/dois/new'); + // await selectSearch('[data-test-funder-name]', 'Action for M.E.'); + // await selectChoose('[data-test-funder-name]', 'Action for M.E.'); + // await fillIn('[data-test-award-number]', 'G2342342'); + // await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); + + // // assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); + // assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); + // assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); + // assert.dom('[data-test-award-number]').hasValue('G2342342'); + // assert.dom('[data-test-award-uri]').hasValue('https://schema.datacite.org/meta/kernel-4'); + // }); }); From e7d290a82624634f91a1582d3aa236cd9f5f3a1e Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 15:46:11 +0200 Subject: [PATCH 18/21] add tests --- tests/acceptance/client_admin/doi-test.js | 30 ++++++++++++----------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index 2facb6269..8f676978f 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -154,18 +154,20 @@ module('Acceptance | client_admin | doi', function(hooks) { assert.dom('[data-test-related-scheme-type]').hasValue('XML'); }); - // test('visiting the Form and adding funding References', async function(assert) { - // // when running on travis This Test can take too much time because it call the Crossref API and the selector might not find the element - // await visit('repositories/datacite.test/dois/new'); - // await selectSearch('[data-test-funder-name]', 'Action for M.E.'); - // await selectChoose('[data-test-funder-name]', 'Action for M.E.'); - // await fillIn('[data-test-award-number]', 'G2342342'); - // await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); - - // // assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); - // assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); - // assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); - // assert.dom('[data-test-award-number]').hasValue('G2342342'); - // assert.dom('[data-test-award-uri]').hasValue('https://schema.datacite.org/meta/kernel-4'); - // }); + test('visiting the Form and adding funding References', async function(assert) { + // when running on travis This Test can take too much time because it call the Crossref API and the selector might not find the element + await visit('repositories/datacite.test/dois/new'); + // await selectSearch('[data-test-funder-name]', 'Action for M.E.'); + // await selectChoose('[data-test-funder-name]', 'Action for M.E.'); + await fillIn('[data-test-funder-identifier]', 'http://dx.doi.org/10.13039/501100001982'); + await selectChoose('[data-test-funder-identifier-type]', 'Crossref Funder ID The type of the funderIdentifier.'); + await fillIn('[data-test-award-number]', 'G2342342'); + await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); + + // assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); + assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); + assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); + assert.dom('[data-test-award-number]').hasValue('G2342342'); + assert.dom('[data-test-award-uri]').hasValue('https://schema.datacite.org/meta/kernel-4'); + }); }); From 42b0c8b846ad0750edd7d93d4caae866fdedd261 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 15:47:07 +0200 Subject: [PATCH 19/21] right type --- tests/acceptance/client_admin/doi-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index 8f676978f..3e4038a83 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -160,7 +160,7 @@ module('Acceptance | client_admin | doi', function(hooks) { // await selectSearch('[data-test-funder-name]', 'Action for M.E.'); // await selectChoose('[data-test-funder-name]', 'Action for M.E.'); await fillIn('[data-test-funder-identifier]', 'http://dx.doi.org/10.13039/501100001982'); - await selectChoose('[data-test-funder-identifier-type]', 'Crossref Funder ID The type of the funderIdentifier.'); + await selectChoose('[data-test-funder-identifier-type]', 'Crossref Funder ID'); await fillIn('[data-test-award-number]', 'G2342342'); await fillIn('[data-test-award-uri]', 'https://schema.datacite.org/meta/kernel-4'); From 57b273a68548e6666beca579ab5d1204b4cd2c52 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 16:00:42 +0200 Subject: [PATCH 20/21] adjust test --- tests/acceptance/client_admin/doi-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/client_admin/doi-test.js b/tests/acceptance/client_admin/doi-test.js index 3e4038a83..6e70953c7 100644 --- a/tests/acceptance/client_admin/doi-test.js +++ b/tests/acceptance/client_admin/doi-test.js @@ -166,7 +166,7 @@ module('Acceptance | client_admin | doi', function(hooks) { // assert.dom('[data-test-funder-name]').hasValue('Action for M.E.'); assert.dom('[data-test-funder-identifier]').hasValue('http://dx.doi.org/10.13039/501100001982'); - assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID The type of the funderIdentifier.'); + assert.dom('[data-test-funder-identifier-type]').includesText('Crossref Funder ID × The type of the funderIdentifier.'); assert.dom('[data-test-award-number]').hasValue('G2342342'); assert.dom('[data-test-award-uri]').hasValue('https://schema.datacite.org/meta/kernel-4'); }); From 7116ff394645e26175bd28d16a14603e08ba4036 Mon Sep 17 00:00:00 2001 From: kjgarza Date: Mon, 30 Mar 2020 18:25:39 +0200 Subject: [PATCH 21/21] change test names --- app/components/doi-funding-reference.js | 6 ------ ...i-funding-reference.js => doi-funding-reference-test.js} | 2 +- ...unding-references.js => doi-funding-references-tests.js} | 0 3 files changed, 1 insertion(+), 7 deletions(-) rename tests/integration/components/{doi-funding-reference.js => doi-funding-reference-test.js} (57%) rename tests/integration/components/{doi-funding-references.js => doi-funding-references-tests.js} (100%) diff --git a/app/components/doi-funding-reference.js b/app/components/doi-funding-reference.js index 0e7516515..16b62a279 100644 --- a/app/components/doi-funding-reference.js +++ b/app/components/doi-funding-reference.js @@ -75,15 +75,9 @@ export default Component.extend({ } } }, - updateFunderIdentifierType(value) { - this.fragment.set('funderIdentifierType', value); - }, updateFunderIdentifier(value) { this.fragment.set('funderIdentifier', value); }, - searchFunderIdentifier(value) { - this.fragment.set('funderIdentifier', value); - }, selectFunderReference(value) { this.updateFunderReference(value); }, diff --git a/tests/integration/components/doi-funding-reference.js b/tests/integration/components/doi-funding-reference-test.js similarity index 57% rename from tests/integration/components/doi-funding-reference.js rename to tests/integration/components/doi-funding-reference-test.js index 1e52c8379..45dce3207 100644 --- a/tests/integration/components/doi-funding-reference.js +++ b/tests/integration/components/doi-funding-reference-test.js @@ -14,6 +14,6 @@ module('Integration | Component | doi funding-reference', function(hooks) { this.set('fragment', make('fundingReference')); await render(hbs`{{doi-funding-reference model=model fragment=fragment index=0}}`); - assert.dom('*').hasText('Identifiers of related resources. These must be globally unique identifiers, such as: ARK, arXiv, bibcode, DOI, EAN13, EISSN, Handle, IGSN, ISBN, ISSN, ISTC, LISSN, LSID, PMID, PURL, UPC, URL, URN, w3id. Related Identifier Type Relation Type'); + assert.dom('*').hasText('Funder Name Funder Identifier Uniquely identifies a funding entity, according to any of these types: Crossref Funder ID, GRID, ISNI, or ROR. Funder Identifier Type Award Number The code assigned by the funder to a sponsored award (grant). Award Title The human readable title or name of the award (grant). Award Uri The URI leading to a page provided by the funder for more information about the award (grant). For example, https://www.moore.org/gran ts/list/GBMF3859.01'); }); }); diff --git a/tests/integration/components/doi-funding-references.js b/tests/integration/components/doi-funding-references-tests.js similarity index 100% rename from tests/integration/components/doi-funding-references.js rename to tests/integration/components/doi-funding-references-tests.js