<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="http://technicalfoundations.ukoln.ac.uk/taxonomy/term/170/all" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>ORCID API: relevant content on this site</title>
    <link>http://technicalfoundations.ukoln.ac.uk/taxonomy/term/170/all</link>
    <description></description>
    <language>en</language>
          <item>
    <title>Draft ORCID API is now open for viewing! </title>
    <link>http://technicalfoundations.ukoln.ac.uk/blog/draft-orcid-api-now-open-viewing</link>
    <description>&lt;p&gt;The API draft is now available for public viewing and covers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Levels of privacy and other contextual terminology.&lt;/li&gt;
&lt;li&gt;Public query API by way of illustrative HTTP query dialogues.&lt;/li&gt;
&lt;li&gt;Protected Data query via OAuth.
&lt;ul&gt;
&lt;li&gt;OAuth Workflow is illustrated in some depth&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This is a &lt;strong&gt;pre-release&lt;/strong&gt;&amp;nbsp;of the API; it is nearly there, but it would be foolish to assume that the API will not change if any difficulties arise or if a better way is agreed upon.&lt;/p&gt;
&lt;p&gt;Google Doc version of API:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://docs.google.com/document/d/1hEHwKEpQ3wH-qmgmQAgdxdcEIG1jmv6e2-FgdEfW89I/edit?hl=en_GB&quot;&gt;https://docs.google.com/document/d/1hEHwKEpQ3wH-qmgmQAgdxdcEIG1jmv6e2-FgdEfW89I/edit?hl=en_GB&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;As the document is ‘view-only’, you cannot comment on it directly. Please post queries and observations to the &lt;a href=&quot;http://groups.google.com/group/orcid-researchers&quot;&gt;ORCID Researcher Google group&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NB&lt;/strong&gt; Posting a comment here will not directly reach the other members of the ORCID board.&lt;/p&gt;
</description>
     <comments>http://technicalfoundations.ukoln.ac.uk/blog/draft-orcid-api-now-open-viewing#comments</comments>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/persons/ben-osteen">Ben O&#039;Steen</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/organisations/orcid">ORCID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/organisations/orcid-researcher-google-group">ORCID Researcher Google group</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/projects/orcid">ORCID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid">orcid</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid-api">ORCID API</category>
 <pubDate>Thu, 29 Sep 2011 13:57:00 +0000</pubDate>
 <dc:creator>Ben O&#039;Steen</dc:creator>
 <guid isPermaLink="false">25 at http://technicalfoundations.ukoln.ac.uk</guid>
  </item>
  <item>
    <title>ORCID – a taster of the API</title>
    <link>http://technicalfoundations.ukoln.ac.uk/blog/orcid-%E2%80%93-taster-api</link>
    <description>&lt;p&gt;As the official draft API (googledoc) is both in flux and read-protected so that only those invited can see it, I am unable to give you a complete view of how things are shaping up.&lt;/p&gt;
&lt;p&gt;However, I can relay a number of key points that everyone involved is concerned about:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It must have sensible (some may say RESTful) URLs&lt;/li&gt;
&lt;li&gt;Human and machine-readable data is a must via
&lt;ul&gt;
&lt;li&gt;Content-negotiation,&lt;/li&gt;
&lt;li&gt;and optionally, “suffix” negotiation (adding a “.xml” or “/xml”) for convenience.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;OAuth is the current plan to share trust, allowing users the greatest control over what and who has access to their live profile data.&lt;/li&gt;
&lt;li&gt;Profile creation/editing “By Proxy” is important, but shouldn’t take any control of the researcher’s basic profile information from the researcher themselves.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Some code!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Gudmundur A. Thorisson (University of Leicester and a member of the ORCID Technical Advisory Group) has put together an emulation of certain portions of the ORCID API, including some of the OAuth parts:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/gthorisson/orcid-sandbox&quot;&gt;https://github.com/gthorisson/orcid-sandbox&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Get the code from github and making sure you already have Rails/Ruby installed:&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;code&gt;$ cd orcid-sandbox&lt;br /&gt; $ bundle install&lt;br /&gt; $ bundle exec rake db:migrate&lt;br /&gt; $ bundle exec rake db:setup&lt;br /&gt; $ rails server -p 3001 -d&lt;br /&gt; &lt;/code&gt;&lt;/p&gt;
&lt;p&gt;(you may need “$ scripts/rails server -p 3001 -d)&lt;/p&gt;
&lt;p&gt;Once you have the code up and running, you should be able to log in, make accounts and so on.&lt;/p&gt;
&lt;pre&gt;# OAuth-protected access to profile
[mummi@cambozola-2]curl  &lt;a href=&quot;http://localhost:3001/profile&quot; title=&quot;http://localhost:3001/profile&quot;&gt;http://localhost:3001/profile&lt;/a&gt; -H &quot;Accept: text/xml&quot;  -I
HTTP/1.1 401 Unauthorized
X-Ua-Compatible: IE=Edge
Connection: Keep-Alive
Content-Type: text/html; charset=utf-8
Date: Thu, 08 Sep 2011 12:20:50 GMT
Server: WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
X-Runtime: 0.087887
Content-Length: 0
Cache-Control: no-cache
&lt;/pre&gt;&lt;pre&gt;# Public access to profile
[mummi@cambozola-2]curl  &lt;a href=&quot;http://localhost:3001/cid/0723-1814-6587-5983&quot; title=&quot;http://localhost:3001/cid/0723-1814-6587-5983&quot;&gt;http://localhost:3001/cid/0723-1814-6587-5983&lt;/a&gt; -H &quot;Accept: text/xml&quot; -I
HTTP/1.1 200 OK
X-Ua-Compatible: IE=Edge
Etag: &quot;390c3560fce0064d65dd1373799f13d0&quot;
Connection: Keep-Alive
Content-Type: application/xml; charset=utf-8
Date: Thu, 08 Sep 2011 12:20:49 GMT
Server: WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
X-Runtime: 0.035443
Content-Length: 0
Cache-Control: max-age=0, private, must-revalidate

# Sample response (from Mike&#039;s XML examples)
[mummi@cambozola-2]curl  &lt;a href=&quot;http://localhost:3001/cid/0723-1814-6587-5983&quot; title=&quot;http://localhost:3001/cid/0723-1814-6587-5983&quot;&gt;http://localhost:3001/cid/0723-1814-6587-5983&lt;/a&gt; -H &quot;Accept: text/xml&quot;
&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
&amp;lt;orcid-bio-response xsi:schemaLocation=&quot;http://www.orcid.org/ns/orcid_bio_response_1.0.xsd&quot;
    xmlns=&quot;http://www.orcid.org/ns/bio_response&quot;
    xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&amp;gt;
    &amp;lt;response_version&amp;gt;1.0&amp;lt;/response_version&amp;gt;
    &amp;lt;response_summary&amp;gt;
        &amp;lt;submission-date&amp;gt;09-10-2012 15:50:01&amp;lt;/submission-date&amp;gt;
        &amp;lt;completion-date&amp;gt;09-10-2012 15:50:07&amp;lt;/completion-date&amp;gt;
        &amp;lt;total-researchers-found&amp;gt;1&amp;lt;/total-researchers-found&amp;gt;
        &amp;lt;!-- error message, if applicable --&amp;gt;
        &amp;lt;!-- unable to connect to ORCID, no matching researchers etc --&amp;gt;
        &amp;lt;error-desc&amp;gt;No researcher found for this institution.&amp;lt;/error-desc&amp;gt;
    &amp;lt;/response_summary&amp;gt;
    &amp;lt;profileList&amp;gt;
        &amp;lt;researcher-profile&amp;gt;
            &amp;lt;!--  ORCID elements will be present for every researcher found --&amp;gt;
            &amp;lt;orcid&amp;gt;XXXXXXXXXXXXXX&amp;lt;/orcid&amp;gt;
            &amp;lt;!-- In short, researcher has claimed the profile if confirmed=true--&amp;gt;
            &amp;lt;confirmed&amp;gt;true&amp;lt;/confirmed&amp;gt;
            &amp;lt;firstName&amp;gt;Josiah&amp;lt;/firstName&amp;gt;
            &amp;lt;lastName&amp;gt;Carberry&amp;lt;/lastName&amp;gt;
            &amp;lt;middleName&amp;gt;Stinkney&amp;lt;/middleName&amp;gt;
            &amp;lt;other-names&amp;gt;
                &amp;lt;other-name&amp;gt;J. Carberry&amp;lt;/other-name&amp;gt;
                &amp;lt;other-name&amp;gt;J. S. Carberry&amp;lt;/other-name&amp;gt;
            &amp;lt;/other-names&amp;gt;
            &amp;lt;researcher-urls&amp;gt;
                &amp;lt;url&amp;gt;http://library.brown.edu/about/hay/carberry.php&amp;lt;/url&amp;gt;
                &amp;lt;url&amp;gt;http://en.wikipedia.org/wiki/Josiah_S._Carberry&amp;lt;/url&amp;gt;
                &amp;lt;url&amp;gt;http://www.brown.edu/Administration/News_Bureau/Databases/Encyclopedia/search.php?serial=C0070&amp;lt;/url&amp;gt;
            &amp;lt;/researcher-urls&amp;gt;
            &amp;lt;institution&amp;gt;
                &amp;lt;name&amp;gt;Brown University&amp;lt;/name&amp;gt;
                &amp;lt;address&amp;gt;
                        &amp;lt;addressLine1&amp;gt;38 Brown Street / Box 1920&amp;lt;/addressLine1&amp;gt;
                        &amp;lt;city&amp;gt;Providence&amp;lt;/city&amp;gt;
                        &amp;lt;state-or-province&amp;gt;Rhode Island&amp;lt;/state-or-province&amp;gt;
                        &amp;lt;country&amp;gt;United States&amp;lt;/country&amp;gt;
                        &amp;lt;postalcode&amp;gt;02912&amp;lt;/postalcode&amp;gt;
                    &amp;lt;/address&amp;gt;
                &amp;lt;departmentName&amp;gt;Psychoceramics&amp;lt;/departmentName&amp;gt;
                &amp;lt;departmentName&amp;gt;High Energy Metaphysics&amp;lt;/departmentName&amp;gt;
                &amp;lt;role&amp;gt;Researcher (Academic)&amp;lt;/role&amp;gt;
                &amp;lt;start-date&amp;gt;1929&amp;lt;/start-date&amp;gt;
            &amp;lt;/institution&amp;gt;
            &amp;lt;bulk-institution&amp;gt;Brown University&amp;lt;/bulk-institution&amp;gt;
            &amp;lt;sponsor&amp;gt;Brown University Library&amp;lt;/sponsor&amp;gt;
            &amp;lt;affiliate-institution&amp;gt;
                &amp;lt;name&amp;gt; Wesleyan University&amp;lt;/name&amp;gt;
                &amp;lt;address&amp;gt;
                        &amp;lt;addressLine1&amp;gt;Wesleyan University&amp;lt;/addressLine1&amp;gt;
                        &amp;lt;addressLine2&amp;gt;Czech-Republic&amp;lt;/addressLine2&amp;gt;
                        &amp;lt;city&amp;gt;Middletown&amp;lt;/city&amp;gt;
                        &amp;lt;state-or-province&amp;gt;Connecticut&amp;lt;/state-or-province&amp;gt;
                        &amp;lt;country&amp;gt;United States&amp;lt;/country&amp;gt;
                        &amp;lt;postalcode&amp;gt;06459&amp;lt;/postalcode&amp;gt;
                    &amp;lt;/address&amp;gt;
                &amp;lt;departmentName&amp;gt;Bilocation&amp;lt;/departmentName&amp;gt;
                &amp;lt;role&amp;gt;Researcher (Academic)&amp;lt;/role&amp;gt;
                &amp;lt;start-date&amp;gt;1930&amp;lt;/start-date&amp;gt;
            &amp;lt;/affiliate-institution&amp;gt;
        &amp;lt;/researcher-profile&amp;gt;
    &amp;lt;/profileList&amp;gt;
&amp;lt;/orcid-bio-response&amp;gt;
&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description>
     <comments>http://technicalfoundations.ukoln.ac.uk/blog/orcid-%E2%80%93-taster-api#comments</comments>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/persons/ben-osteen">Ben O&#039;Steen</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/persons/gudmundur-thorisson">Gudmundur A. Thorisson</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/organisations/orcid-technical-advisory-group">ORCID Technical Advisory Group</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/projects/orcid">ORCID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/identifiers">identifiers</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid">orcid</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid-api">ORCID API</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/persistent-identification">persistent identification</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/researcher-identification">researcher identification</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/researcher-ids">researcher ids</category>
 <pubDate>Tue, 13 Sep 2011 10:09:00 +0000</pubDate>
 <dc:creator>Ben O&#039;Steen</dc:creator>
 <guid isPermaLink="false">18 at http://technicalfoundations.ukoln.ac.uk</guid>
  </item>
  <item>
    <title>ORCID: some questions and answers</title>
    <link>http://technicalfoundations.ukoln.ac.uk/blog/orcid-some-questions-and-answers</link>
    <description>&lt;p&gt;The following is from an email exchange with&amp;nbsp;Nicky Ferguson. These are my answers to the questions&lt;br /&gt; he posed, and as such shouldn’t be considered the opinion of the ORCID project itself. They are the&lt;br /&gt; answers I believe are correct, based on the meetings and discussions I have been part of on the&lt;br /&gt; technical advisory group.&lt;/p&gt;
&lt;p&gt;If any other member of the advisory group can correct any inaccuracies in the comments, I’d be&lt;br /&gt; most appreciative.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;gt; 1. &amp;nbsp;ISNI, ORCID, VIAF etc … will they each or should they be a&lt;br /&gt; &amp;gt; subset of UUID, in a world where there is a need for identifiers for&lt;br /&gt; &amp;gt; all sorts of things from lab notebooks to datasets to institutions, as&lt;br /&gt; &amp;gt; well as researchers?&lt;/div&gt;
&lt;p&gt;ORCID and VIAF have both plumped for a ‘short’ number and a verbal&lt;br /&gt; prefix (eg VIAF ID: 747462). It is intended (eventually) that the profile&amp;nbsp;&lt;br /&gt; corresponding to a given ORCID should be able to be found from&lt;br /&gt; &lt;em&gt;an&lt;/em&gt;&amp;nbsp;ORCID site, and not necessarily &lt;em&gt;the&lt;/em&gt;&amp;nbsp;ORCID site.&lt;/p&gt;
&lt;p&gt;You can currently construct URLs for both&lt;br /&gt; where that ID number is used as a suffix to do a lookup on that&lt;br /&gt; researcher/author/etc, with effort and consideration being made so&lt;br /&gt; that the URL prefix will not change in the near future. It is naive to&lt;br /&gt; think that any URL prefix that will never, ever change but keeping the&lt;br /&gt; URL usable for as long as humanly possible is given serious thought.&lt;/p&gt;
&lt;p&gt;With UUIDs, you will have to do something identical as there is no DNS&lt;br /&gt; lookup *system* for them but a handful of individual sites that record&lt;br /&gt; links as it suits them. Due to the UUID range being so large, the key&lt;br /&gt; advantage of the scheme is that given a suitably random manner to&lt;br /&gt; generate them, collisions between UUIDs made on separate systems are&lt;br /&gt; incredibly rare. I’m not sure that anyone has recorded a collision&lt;br /&gt; yet, (disregarding those due to poorly configured entropy pools on&lt;br /&gt; virtual machines) This means that it is perfectly reasonable to&lt;br /&gt; generate UUIDs for things completely independently of any central&lt;br /&gt; organising body, and so makes them very cheap and long-lasting.&lt;/p&gt;
&lt;p&gt;People do not like them however – subjectively – they do not like them&lt;br /&gt; as part of visible URLs, they do not like them as identifiers to&lt;br /&gt; wield, and they do not like identifiers for themselves that they&lt;br /&gt; cannot remember by rote.&lt;/p&gt;
&lt;div&gt;&amp;gt; 2. &amp;nbsp;Who decides who is a researcher? &amp;nbsp;In the UK some universities call&lt;br /&gt; &amp;gt; all their members of staff &amp;nbsp;”teacher/researchers”, others make a clear&lt;br /&gt; &amp;gt; distinction. &amp;nbsp;What about schoolchildren who jointly author a paper?&lt;br /&gt; &amp;gt; What about researchers in charities or industry who may never author a&lt;br /&gt; &amp;gt; paper. &amp;nbsp;What about peer-reviewers and research “users”?&lt;/div&gt;
&lt;p&gt;ORCID currently is an “Allow then Deny Later” system. The main&lt;br /&gt; ‘ORCID’ site will be a self-signup website (with an initially limited&lt;br /&gt; ability for proxies to sign up and create and amend profiles for others)&lt;br /&gt; and the ‘researcher-iness’ of profiles will not be policed as there is no need to,&lt;br /&gt; unless the profile claims something untruthful.&lt;/p&gt;
&lt;p&gt;The core of the&amp;nbsp;system is based on trust – if a person claims an institutional affiliation,&lt;br /&gt; that will be marked as untrusted until that institution&lt;br /&gt; verifies this. If an institution or research group doesn’t verify the&lt;br /&gt; data, care is being taken that this is displayed as clearly as&lt;br /&gt; possible.&lt;/p&gt;
&lt;p&gt;There is no need to police people, only to police the claims they make&lt;br /&gt; about themselves and the works they claim to have a hand in&lt;br /&gt; publishing.&lt;/p&gt;
&lt;div&gt;&amp;gt;&lt;br /&gt; &amp;gt; 3. &amp;nbsp;Even institutions which pride themselves on their research may&lt;br /&gt; &amp;gt; only have 20-30% of their staff who are researchers, how do you sell a&lt;br /&gt; &amp;gt; business case to them that they should alter their systems to&lt;br /&gt; &amp;gt; accommodate an identifier for only a minority of the staff on their&lt;br /&gt; &amp;gt; finance/HR/security systems?&lt;/div&gt;
&lt;p&gt;Again, the ORCID system (and to an extent the VIAF system) is geared&lt;br /&gt; to help the researcher – at a basic level, keeping a note of the ID&lt;br /&gt; which a researcher has is all that is required to begin to benefit&lt;br /&gt; from it. I think that due to the well understood pace at which change&lt;br /&gt; occurs within the administrative systems of an institution, the first&lt;br /&gt; meeting at which a business case for change might need to be presented&lt;br /&gt; will occur many, many months after the researchers have adopted the&lt;br /&gt; system for themselves as just part of the academic toolset. And if the&lt;br /&gt; researchers do not find it useful, then it will disappear like so many&lt;br /&gt; of the previous ID systems.&lt;/p&gt;
&lt;div&gt;&amp;gt; 4. &amp;nbsp;Similar question about researchers themselves – they have been&lt;br /&gt; &amp;gt; disappointingly reluctant to deposit their papers in repositories and&lt;br /&gt; &amp;gt; to use grant numbers in their publications, even when “mandated” – who&lt;br /&gt; &amp;gt; will design the compelling interfaces which will encourage them to use&lt;br /&gt; &amp;gt; ORCID … in the academic community we don’t have a great track record&lt;br /&gt; &amp;gt; at designing compelling interfaces?&lt;/div&gt;
&lt;p&gt;It is not an academic community that is designing the interface for&lt;br /&gt; one – it has already been outsourced to a small team of local&lt;br /&gt; designers and developers that Crossref have had good working&lt;br /&gt; relationships with so there is hope there. The key will be&lt;br /&gt; whether or not the system will save time for the researcher and make&lt;br /&gt; certain tasks that they already do easier.&lt;/p&gt;
&lt;p&gt;The API for the ORCID&lt;br /&gt; service is very much the focus at the moment and certain use-cases&lt;br /&gt; have been thought through, such as encouraging publishers and journal&lt;br /&gt; submission processes to use the ID system, rather than get the&lt;br /&gt; researcher (or PA/postgrad by proxy) to fill in all their information&lt;br /&gt; again, as well as bootstrapping the ORCID database with information&lt;br /&gt; already within existing bibliographic databases so that many profiles&lt;br /&gt; need only be claimed and verified, rather than generated anew.&lt;/p&gt;
&lt;p&gt;I do not mean to knock the institutional repository scene unduly&lt;br /&gt; (having been an institutional repo person myself) but I have yet to see&lt;br /&gt; more than a few repositories strive to make the researcher’s&lt;br /&gt; lives easier and better. It is worth noting that those repositories&lt;br /&gt; are the one’s that are thriving.&lt;/p&gt;
&lt;div&gt;
&lt;p&gt;&amp;gt;&lt;br /&gt; &amp;gt; 5. &amp;nbsp;What role would a national registry need to play to map ORCID (or&lt;br /&gt; &amp;gt; a.n.other identifier) with key information? &amp;nbsp;and finally …&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;In short, include something semantically similar to ‘rdf:seeAlso’&lt;br /&gt; within the database/triplestore/profile for the national registry’s&lt;br /&gt; version of the same person. Many of the codebase changes occurring at&lt;br /&gt; this time are so that the informational claims within other&lt;br /&gt; whitelisted registries can be automatically shown and interpreted&lt;br /&gt; within the ORCID store, moving towards a multi-trust system.&lt;/p&gt;
&lt;div&gt;&amp;gt;&lt;br /&gt; &amp;gt; 6. &amp;nbsp;I understand that the idea is that the researchers themselves&lt;br /&gt; &amp;gt; would control the registration and updating processes – but&lt;br /&gt; &amp;gt; institutions, funders and government agencies will surely want to&lt;br /&gt; &amp;gt; maintain their own registries/database using the ID … yes? &amp;nbsp;Is the&lt;br /&gt; &amp;gt; mechanism for change control of personal information thought out?&lt;br /&gt; &amp;gt;&lt;/div&gt;
&lt;p&gt;As mentioned above, the changes occurring and being implemented are to&lt;br /&gt; effect a solid multi-trust control system, which will allow for the&lt;br /&gt; kind of distributed profiles you mention to be accepted. However, the&lt;br /&gt; systems have to provide data such that a machine can use it, and that&lt;br /&gt; may be the sticking point for a few of these systems.&lt;/p&gt;
</description>
     <comments>http://technicalfoundations.ukoln.ac.uk/blog/orcid-some-questions-and-answers#comments</comments>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/persons/ben-osteen">Ben O&#039;Steen</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/persons/nicky-ferguson">Nicky Ferguson</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/organisations/orcid">ORCID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/organisations/orcid-technical-advisory-group">ORCID Technical Advisory Group</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/projects/orcid">ORCID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/identifiers">identifiers</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/isni">ISNI</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid">orcid</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid-api">ORCID API</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/persistent-identification">persistent identification</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/researcher-identification">researcher identification</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/researcher-ids">researcher ids</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/viaf">VIAF</category>
 <pubDate>Tue, 13 Sep 2011 09:38:00 +0000</pubDate>
 <dc:creator>Ben O&#039;Steen</dc:creator>
 <guid isPermaLink="false">20 at http://technicalfoundations.ukoln.ac.uk</guid>
  </item>
  <item>
    <title>ORCID update – ResearcherID system and a call for API</title>
    <link>http://technicalfoundations.ukoln.ac.uk/blog/orcid-update-%E2%80%93-researcherid-system-and-call-api</link>
    <description>&lt;p&gt;A quick update:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ORCID service:
&lt;ul&gt;
&lt;li&gt;Geoff Bilder (Crossref) is leading the developmental work on the ORCID system&lt;/li&gt;
&lt;li&gt;The first instance of this system will be based on the code produced for the Thomson-Reuters ResearcherID system which has the following characteristics:
&lt;ul&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;&quot;&gt;Java 1.6 (current version is 1.6.021)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;&quot;&gt;iBatis 2.3.0.677 (current version is 3.0.2)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;&quot;&gt;Struts2&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;&quot;&gt;Tomcat 5.5.x (current version is 7.0.2)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;&quot;&gt;MySQL 5.0.19 (current 5.1.50)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;&quot;&gt;Standard XML RPC&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;&quot;&gt;Quartz Scheduler&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;ORCID development phases have not changed much since the beginning:
&lt;ul&gt;
&lt;li&gt;Phase 1 – create an author ‘self-claim’ system, based on the ResearcherID code but with changes made to accommodate desired APIs and phase 2 integration work.&lt;/li&gt;
&lt;li&gt;Phase 2 – create a multi-trust system – where trusted bodies (institutions) can publish information on ORCIDs they know about and validate and verify the data held on those ORCIDs in other systems.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;One key component of this has been the desire to ‘nail-down’ the desired API for access to ORCID profile information as early as possible. The discussions are not occurring on a publically-accessible mailing list yet although I and others have put forward this as something that is highly desirable if not essential.&lt;/div&gt;
&lt;div&gt;In the meantime, I would welcome any API ideas, desires or queries that I can take to the ORCID TAG.&lt;/div&gt;
</description>
     <comments>http://technicalfoundations.ukoln.ac.uk/blog/orcid-update-%E2%80%93-researcherid-system-and-call-api#comments</comments>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/persons/ben-osteen">Ben O&#039;Steen</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/persons/geoff-bilder">Geoff Bilder</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/organisations/orcid">ORCID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/organisations/thomson-reuters">Thomson-Reuters</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/projects/orcid-crossref">ORCID CrossRef</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid">orcid</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid-api">ORCID API</category>
 <pubDate>Mon, 18 Jul 2011 08:53:00 +0000</pubDate>
 <dc:creator>Ben O&#039;Steen</dc:creator>
 <guid isPermaLink="false">21 at http://technicalfoundations.ukoln.ac.uk</guid>
  </item>
  </channel>
</rss>