Last active
August 29, 2015 14:22
-
-
Save lizkrznarich/773ea93d6978a927a85a to your computer and use it in GitHub Desktop.
Sample XML for ORCID works
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<orcid-message xmlns="http://www.orcid.org/ns/orcid" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://raw.github.com/ORCID/ORCID-Source/master/orcid-model/src/main/resources/orcid-message-1.2.xsd"> | |
<message-version>1.2</message-version> | |
<orcid-profile> | |
<orcid-activities> | |
<orcid-works> | |
<orcid-work> | |
<work-title> | |
<title>ORCID: a system to uniquely identify researchers</title> | |
</work-title> | |
<journal-title>Learned Publishing</journal-title> | |
<work-type>journal-article</work-type> | |
<publication-date> | |
<year>2012</year> | |
<month>10</month> | |
</publication-date> | |
<work-external-identifiers> | |
<work-external-identifier> | |
<work-external-identifier-type>doi</work-external-identifier-type> | |
<work-external-identifier-id>10.1087/20120404</work-external-identifier-id> | |
</work-external-identifier> | |
</work-external-identifiers> | |
<language-code>en</language-code> | |
</orcid-work> | |
</orcid-works> | |
</orcid-activities> | |
</orcid-profile> | |
</orcid-message> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<orcid-message xmlns="http://www.orcid.org/ns/orcid" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://raw.github.com/ORCID/ORCID-Source/master/orcid-model/src/main/resources/orcid-message-1.2.xsd"> | |
<message-version>1.2</message-version> | |
<orcid-profile> | |
<orcid-activities> | |
<orcid-works> | |
<orcid-work> | |
<work-title> | |
<title>Now this title is updated!</title> | |
</work-title> | |
<journal-title>Learned Publishing</journal-title> | |
<work-type>journal-article</work-type> | |
<publication-date> | |
<year>2012</year> | |
<month>10</month> | |
</publication-date> | |
<work-external-identifiers> | |
<work-external-identifier> | |
<work-external-identifier-type>doi</work-external-identifier-type> | |
<work-external-identifier-id>10.1087/20120404</work-external-identifier-id> | |
</work-external-identifier> | |
</work-external-identifiers> | |
<language-code>en</language-code> | |
</orcid-work> | |
</orcid-works> | |
</orcid-activities> | |
</orcid-profile> | |
</orcid-message> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment