caltechlibrary / irdmtools

A Go and Python package for working with InvenioRDM repositories.
https://caltechlibrary.github.io/irdmtools
Other
1 stars 1 forks source link

doi2rdm: identifier scheme case #23

Closed tmorrell closed 1 year ago

tmorrell commented 1 year ago

identifier schemes should be lowercased. For example

 "identifiers": [
            {
                "scheme": "ISSN",
                "identifier": "1094-4087"

should be


 "identifiers": [
            {
                "scheme": "issn",
                "identifier": "1094-4087"
rsdoiel commented 1 year ago

Fixed in upcoming v0.0.16