github.com/uvalib/orcid-access-ws@v0.0.0-20250612130209-7d062dbabf9d/data/ORCID-LibraMapping.xml (about) 1 2 <?xml version="1.0" encoding="UTF-8"?> 3 <work:work 4 xmlns:common="http://www.orcid.org/ns/common" xmlns:work="http://www.orcid.org/ns/work" 5 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 6 xsi:schemaLocation="http://www.orcid.org/ns/work /work-3.0.xsd "> 7 8 <!-- title is required --> 9 <work:title> 10 <common:title>TITLE</common:title> 11 </work:title> 12 13 <!-- description is not required, but including since abstract is required in Libra --> 14 <work:short-description>ABSTRACT</work:short-description> 15 16 <!-- type is required --> 17 <work:type>RESOURCE-TYPE(need to map LibraOC types to the “ORCID” types)</work:type> 18 19 <!-- publication-date is NOT required --> 20 <!-- only send, if nothing entered in Libra “Publication Date” Use Create Date here --> 21 <!-- do not use if "Publication Date" has text, because it is free text --> 22 <common:publication-date> 23 <common:year>YYYY</common:year> 24 <common:month>MM</common:month> 25 <common:day>DD</common:day> 26 </common:publication-date> 27 28 <!-- identifier is required --> 29 <common:external-ids> 30 <common:external-id> 31 <!-- type stays "doi" --> 32 <common:external-id-type>doi</common:external-id-type> 33 <common:external-id-value>DOI (base)</common:external-id-value> 34 <common:external-id-url>FULL DOI URL</common:external-id-url> 35 <!-- relationship is "self" --> 36 <common:external-id-relationship>self</common:external-id-relationship> 37 </common:external-id> 38 </common:external-ids> 39 40 <!-- Contributor is for the author(s) --> 41 42 <work:contributors> 43 44 <!-- this is the 1st (or only) author name in the list --> 45 <!-- "sequence" and "role" does not change --> 46 <work:contributor> 47 <work:credit-name>FIRSTNAME LASTNAME</work:credit-name> 48 <work:contributor-attributes> 49 <work:contributor-sequence>first</work:contributor-sequence> 50 <work:contributor-role>author</work:contributor-role> 51 </work:contributor-attributes> 52 </work:contributor> 53 54 <!-- add new work:contributor for each "author" --> 55 <!-- "sequence and "role" does not change --> 56 <work:contributor> 57 <work:credit-name>FIRSTNAME LASTNAME</work:credit-name> 58 <work:contributor-attributes> 59 <work:contributor-sequence>additional</work:contributor-sequence> 60 <work:contributor-role>author</work:contributor-role> 61 </work:contributor-attributes> 62 </work:contributor> 63 64 <!-- end of contributors "authors" --> 65 </work:contributors> 66 67 </work:work> 68 69 70 71 </work:work>