libero / editor

Expedite your production workflow with our open tools and management system
MIT License
10 stars 0 forks source link

Author IDs #24

Open fred-atherden opened 5 years ago

fred-atherden commented 5 years ago

eLife supports ORCID IDs for authors. Erudit supports 3 other author IDs too: isni, researchid, scopus.

User Stories

Author

Production staff

Erudit/PKP/SciELO

But what if . . . ?

Considerations

XML requirements

Should be captured as a <contrib-id>, as a child of <contrib>. All author ids MUST have an @contrib-id-type to identify which ID is being referred to. Accepted @contrib-id-type values are:

Authenticated ORCID IDs require an attribute of: authenticated="true"

<contrib contrib-type="author">
    ...
    <contrib-id contrib-id-type="orcid" authenticated="true">00000-0002-6048-1470</contrib-id>
    <contrib-id contrib-id-type="isni">00000 0004 6048 0000</contrib-id>
    …
</contrib>

Taken from: https://github.com/elifesciences/TextureRequirements/issues/10

NickDuf commented 5 years ago