Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add ROR as an Author Identifier Type #11118

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions doc/release-notes/11075-ror.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
### ROR (Research Organization Registry) as Author Identifier Type

ROR (Research Organization Registry) has been added as an Author Identifier Type (alongside ORCID, etc.) for when the author is an organization rather than a person. See <https://ror.org>, #11075, and #11118.

## Upgrade Instructions

6\. Update metadata blocks

These changes reflect incremental improvements made to the handling of core metadata fields.

```shell
wget https://raw.githubusercontent.com/IQSS/dataverse/v6.6/scripts/api/data/metadatablocks/citation.tsv

curl http://localhost:8080/api/admin/datasetfield/load -H "Content-type: text/tab-separated-values" -X POST --upload-file citation.tsv
```
17 changes: 9 additions & 8 deletions scripts/api/data/metadatablocks/citation.tsv
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,14 @@
contributorType Work Package Leader 15
contributorType Other 16
authorIdentifierScheme ORCID 0
authorIdentifierScheme ISNI 1
authorIdentifierScheme LCNA 2
authorIdentifierScheme VIAF 3
authorIdentifierScheme GND 4
authorIdentifierScheme DAI 5
authorIdentifierScheme ResearcherID 6
authorIdentifierScheme ScopusID 7
authorIdentifierScheme ROR 1
authorIdentifierScheme ISNI 2
authorIdentifierScheme LCNA 3
authorIdentifierScheme VIAF 4
authorIdentifierScheme GND 5
authorIdentifierScheme DAI 6
authorIdentifierScheme ResearcherID 7
authorIdentifierScheme ScopusID 8
language 'Are'are alu 0 alu
language 'Auhelawa kud 1 kud
language A'ou aou 2 aou
Expand Down Expand Up @@ -8061,4 +8062,4 @@
publicationRelationType IsSupplementTo RT3 3
publicationRelationType IsSupplementedBy RT4 4
publicationRelationType IsReferencedBy RT5 5
publicationRelationType References RT6 6
publicationRelationType References RT6 6
1 change: 1 addition & 0 deletions src/main/java/propertyFiles/citation.properties
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ controlledvocabulary.contributorType.supervisor=Supervisor
controlledvocabulary.contributorType.work_package_leader=Work Package Leader
controlledvocabulary.contributorType.other=Other
controlledvocabulary.authorIdentifierScheme.orcid=ORCID
controlledvocabulary.authorIdentifierScheme.ror=ROR
controlledvocabulary.authorIdentifierScheme.isni=ISNI
controlledvocabulary.authorIdentifierScheme.lcna=LCNA
controlledvocabulary.authorIdentifierScheme.viaf=VIAF
Expand Down
Loading