<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="http://technicalfoundations.ukoln.ac.uk/taxonomy/term/168/all" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>ORCID Technical Advisory Group: relevant content on this site</title>
    <link>http://technicalfoundations.ukoln.ac.uk/taxonomy/term/168/all</link>
    <description></description>
    <language>en</language>
          <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>“The path to academic personal identifiers…</title>
    <link>http://technicalfoundations.ukoln.ac.uk/blog/%E2%80%9C-path-academic-personal-identifiers%E2%80%A6</link>
    <description>&lt;p&gt;… is littered with the wrecks and remains of many failed projects.”&lt;/p&gt;
&lt;p&gt;The varied attempts to start, maintain or promote a single identifier scheme for academics, whether applied locally or internationally, &amp;nbsp;can arguably be described as being a mix of successes and abject failures. I do not wish to dwell on what a failure is in this respect, but wish to simply define it as being a scheme that is not seen to be a necessary part of an academic’s ‘life’ – that of research, producing outputs, self-promotion, discovery of work and communicating with their collegues and the wider world.&lt;/p&gt;
&lt;p&gt;It is far more instructive to look at the schemes that have worked in academia, and also at schemes which a broader section of the population have adopted. The first case that is most instructive is that of &lt;a href=&quot;http://repec.org/&quot; title=&quot;RePEc.org&quot;&gt;RePEc&lt;/a&gt; -&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;font-size:medium;&quot;&gt;&lt;a href=&quot;http://repec.org/docs/RePEcIntro.html&quot;&gt;RePEc&lt;/a&gt;&lt;/span&gt;&amp;nbsp;(&lt;span style=&quot;color:#ff6633;font-size:medium;&quot;&gt;Re&lt;/span&gt;search&amp;nbsp;&lt;span style=&quot;color:#ff6633;font-size:medium;&quot;&gt;P&lt;/span&gt;apers in&amp;nbsp;&lt;span style=&quot;color:#ff6633;font-size:medium;&quot;&gt;Ec&lt;/span&gt;onomics) is a collaborative effort of hundreds of volunteers in&amp;nbsp;&lt;a href=&quot;http://repec.org/docs/RePEC_co.html&quot;&gt;74 countries&lt;/a&gt;&amp;nbsp;to enhance the dissemination of research in economics. The heart of the project is a decentralized database of working papers, journal articles and software components. All RePEc material is freely available. Participation in RePEc as a provider only involves the cost of your time in preparing and maintaining metadata describing your publications.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Why is RePEc an important service to consider?&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The service(s) were created and later shaped due to the &lt;strong&gt;needs of its community&lt;/strong&gt;&amp;nbsp;by volunteers – started by Thomas Krichel in 1993 (in every practical sense), the &lt;a href=&quot;http://ideas.repec.org/team.html&quot;&gt;team&lt;/a&gt; has grown over the years.&lt;/li&gt;
&lt;li&gt;It is a great example of a ‘&lt;strong&gt;bottom-up&lt;/strong&gt;‘ (from the authors/peer group) service, not a ‘top-down’ service (institutional/publishing org driven.)&lt;/li&gt;
&lt;li&gt;Being a product of the community, there is a great deal of &lt;strong&gt;trust&lt;/strong&gt;&amp;nbsp;in the services. The barrier to interaction with the site is low.&lt;/li&gt;
&lt;li&gt;It has provided&lt;strong&gt;&amp;nbsp;community-policed freedom&lt;/strong&gt;&amp;nbsp;for Economists to &lt;strong&gt;create&lt;/strong&gt; and &lt;strong&gt;garden&lt;/strong&gt;&amp;nbsp;their own profiles for a number of years -&amp;nbsp;&lt;a href=&quot;http://authors.repec.org/&quot;&gt;http://authors.repec.org&lt;/a&gt;&amp;nbsp;- the service now has over 25,000 author profiles, added primarily by the authors themselves and it is loosely labelled an &lt;em&gt;Author ‘CV’&lt;/em&gt;&amp;nbsp;on the front page of the RePEc website.
&lt;ul&gt;
&lt;li&gt;“The RePEc Author Service aims to&amp;nbsp;&lt;strong&gt;link economists with their research output&lt;/strong&gt; in the&amp;nbsp;&lt;a href=&quot;http://repec.org/&quot; title=&quot;external link&quot;&gt;RePEc&lt;/a&gt;&amp;nbsp;bibliographic database.” (&lt;a href=&quot;http://authors.repec.org/about&quot;&gt;more info&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;It allows the community of economists to &lt;strong&gt;communicate&lt;/strong&gt;&amp;nbsp;their ideas and &lt;strong&gt;discover&lt;/strong&gt; each other’s related research in a better manner than would be possible without it.&lt;/li&gt;
&lt;li&gt;It allows the community to &lt;strong&gt;self-promote&lt;/strong&gt; and &lt;strong&gt;compare&lt;/strong&gt; one author’s output to another’s, based on their &lt;strong&gt;profiles&lt;/strong&gt; and &lt;strong&gt;citations&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These are the key points that I think have contributed to making RePEc and its collection of services a success – it addresses the real &lt;strong&gt;needs&lt;/strong&gt; of a community who &lt;strong&gt;trust&lt;/strong&gt; it, who can &lt;strong&gt;freely&lt;/strong&gt;&amp;nbsp;&lt;strong&gt;add to&lt;/strong&gt; and &lt;strong&gt;correct&lt;/strong&gt; information about themselves and it allows them to &lt;strong&gt;communicate&lt;/strong&gt; better, to &lt;strong&gt;self-promote&lt;/strong&gt; and &lt;strong&gt;compare&lt;/strong&gt; themselves to their peers and to &lt;strong&gt;discover&lt;/strong&gt; further related research with greater &lt;strong&gt;ease&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Why are the publisher’s not fulfilling this role?&lt;/em&gt;&amp;nbsp;One of the key pieces of research currency used by Economists is the Working paper – a paper that by its very nature is subject to revision, alteration and hopefully, amelioration. Unlike some other subjects, it is seen to be important for this ‘imperfect’ work to be scrutinised in a more public manner than other academic cultures might tolerate. A Work (used in the &lt;a href=&quot;http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records&quot;&gt;FRBR&lt;/a&gt; sense) whose contents will shift from the time of first publication, such that many versions of it may exist, are an anathema to conventional fire-and-forget publishing, where what is published may be retracted or given an errata, but its structure and findings are not expected to change.&lt;/p&gt;
&lt;p&gt;Some may refer to this sort of output as ‘grey literature’ – I will give the most current (&lt;a href=&quot;http://en.wikipedia.org/wiki/Gray_literature#Towards_a_New_Definition&quot;&gt;Prague Definition 2010&lt;/a&gt;) below:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;“Grey literature stands for manifold document types produced on all levels of government, academics, business and industry in print and electronic formats that are protected by intellectual property rights, of sufficient quality to be collected and preserved by library holdings or institutional repositories, but not controlled by commercial publishers i.e., where publishing is not the primary activity of the producing body.”&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Under this definition, working papers do fall into this category, although RePEc does not limit authors to listing only these forms of outputs. I consider the &lt;strong&gt;lack&lt;/strong&gt;&amp;nbsp;of a limit here to provide a greater sense of ownership to the community and another aspect that a successful service would likely emulate.&lt;/p&gt;
&lt;p&gt;The fact that RePEc can be considered to be ‘owned’ by a community lends trust to its brand, but that is by no means the only way to garner the trust of a community. It’s actions and developments have &lt;em&gt;won&lt;/em&gt;&amp;nbsp;the trust of its community over the years. It is perfectly feasible for a publisher or private entity to produce a service which has similar success in this area. For example,&amp;nbsp;consider the SSRN (Social Science Research Network).&lt;/p&gt;
&lt;h2&gt;SSRN&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Like RePEc, the SSRN was created and shaped due to the&amp;nbsp;&lt;strong&gt;needs of its community&lt;/strong&gt;&amp;nbsp;but in this case, the organisation behind it is privately owned.&lt;/li&gt;
&lt;li&gt;It is focussed on the needs of &lt;strong&gt;authors&lt;/strong&gt;&amp;nbsp;and many of its services, if not all of them, are designed to be used by those within the &lt;strong&gt;research peer-group&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;A somewhat subjective example is from their site’s navigation banner -&amp;nbsp;&lt;a href=&quot;http://www.ssrn.com/hen/index.html&quot;&gt;http://www.ssrn.com/hen/index.html&lt;/a&gt;&amp;nbsp;- there are options for ‘Top Papers’ and ‘Top Authors’ but nothing for ‘Top Institution’.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;There is a great deal of&amp;nbsp;&lt;strong&gt;trust&lt;/strong&gt;&amp;nbsp;in the services, as the SSRN spend a lot of effort validating, amending and checking the outputs of its services. While the&amp;nbsp;ethereal nature of ‘download statistics’ may be familiar to&amp;nbsp;many of those who run and administer websites, it is treated with great reverence by the users of the SSRN as the organisation expends great time and effort filtering and heavily examining downloads to render this insubstantial statistic less so. It is the appearance of solidity and formality with which the services are delivered that contributes towards the trust of the community.&lt;/li&gt;
&lt;li&gt;It allows the community of economists to&amp;nbsp;&lt;strong&gt;communicate&lt;/strong&gt;&amp;nbsp;their ideas and&amp;nbsp;&lt;strong&gt;discover&lt;/strong&gt;&amp;nbsp;each other’s related research in a better manner than would be possible without it.&lt;/li&gt;
&lt;li&gt;It allows the community to&amp;nbsp;&lt;strong&gt;self-promote&lt;/strong&gt;&amp;nbsp;and&amp;nbsp;&lt;strong&gt;compare&lt;/strong&gt;&amp;nbsp;one author’s output to another’s, based on their&amp;nbsp;&lt;strong&gt;profiles&lt;/strong&gt;&amp;nbsp;and&amp;nbsp;&lt;strong&gt;citations&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;It also responds to criticism and errors within its service rapidly, as it is something that it takes pride in.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Many of the points here, mesh with those from RePEc, including the key (IMHO) ones of&amp;nbsp;&lt;strong&gt;trust&lt;/strong&gt;, &lt;strong&gt;comparison&lt;/strong&gt; amongst peers, &lt;strong&gt;self-promotion&lt;/strong&gt; and &lt;strong&gt;discovery&lt;/strong&gt;. It has more limits than RePEc (contributions to the service are less &lt;strong&gt;free &lt;/strong&gt;in the sense of ‘&lt;a href=&quot;http://en.wikipedia.org/wiki/Gratis_versus_libre&quot;&gt;libre&lt;/a&gt;‘) but these same limits provide extra trust in the information provided by the service; an air that the information within is policed well and hard to falsify.&lt;/p&gt;
&lt;p&gt;Let’s now consider a fundamentally similar service, similar in all of the above, but it is focus is not academic, and it is free only in the sense of it being ‘gratis’ and absolutely not ‘libre’&lt;/p&gt;
&lt;h2&gt;Facebook&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Like RePEc, Facebook was created and shaped due to the&amp;nbsp;&lt;strong&gt;needs of a community&lt;/strong&gt;&amp;nbsp;but it can be stated quite clearly that the community that it primarily serves are not those of its users. A quick glance at their current terms and conditions (or &lt;a href=&quot;http://www.facebook.com/terms.php&quot;&gt;Rights and Responsibilities&lt;/a&gt;) can justify that assertion. Look at point 2, subsection 1 for a legal bombshell of a statement that should worry any user uploading personal videos or pictures to the site.
&lt;ul&gt;
&lt;li&gt;As people tend to blank out when they are presented with T&amp;amp;C legalese, I’ll copy the pertinent section here: &lt;em&gt;…. photos and videos (“IP content”), …: &lt;strong&gt;you grant us &lt;/strong&gt;&lt;/em&gt;[opt-out, not opt-in]&lt;em&gt;&lt;strong&gt;&amp;nbsp;a non-exclusive, transferable, sub-licensable, royalty-free, worldwide license to use any IP content that you post&lt;/strong&gt; on or in connection with Facebook (“IP License”)&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;It is focussed on the &lt;strong&gt;needs&lt;/strong&gt; of&amp;nbsp;&lt;strong&gt;users&lt;/strong&gt;&amp;nbsp;as it gained venture capitol based primarily on numbers of users – a ‘potential’ source of profit, rather than&amp;nbsp;profitability in of itself. The organisation had a drive to gain and retain users, and had to do so by offering useful services.&lt;/li&gt;
&lt;li&gt;There is ironically still a great deal of&amp;nbsp;&lt;strong&gt;trust&lt;/strong&gt;&amp;nbsp;in the services they provide – in my opinion, this is because it is a &lt;strong&gt;mainstream&lt;/strong&gt; service whose privacy transgressions and related reports which would erode that trust are never truly treated to &lt;strong&gt;mainstream&lt;/strong&gt; media coverage.
&lt;ul&gt;
&lt;li&gt;For example, tabloid newspapers make the UK population aware when the UK government or related bodies &lt;strong&gt;lose&lt;/strong&gt; &lt;a href=&quot;http://www.thesun.co.uk/sol/homepage/news/1658327/Lost-data-may-cost-millions.html&quot;&gt;‘CDs of valuable data&lt;/a&gt;‘ by running frontpage-level story &lt;em&gt;campaigns&lt;/em&gt; over the course of days without any information on whether that data is being misused, but I have yet to find stories reported with similar intensity or visibility about the times Facebook openly attempted to &lt;strong&gt;sell personal data&lt;/strong&gt;, finding articles from the &lt;a href=&quot;http://www.independent.co.uk/life-style/gadgets-and-tech/news/the-facebook-betrayal--users-revolt-over-advertising-sellout-400855.html&quot;&gt;Independent&lt;/a&gt;, &lt;a href=&quot;http://www.guardian.co.uk/technology/2010/may/26/facebook-new-privacy-controls-data&quot;&gt;Guardian&lt;/a&gt; and the &lt;a href=&quot;http://www.telegraph.co.uk/finance/newsbysector/mediatechnologyandtelecoms/4413483/Networking-site-cashes-in-on-friends.html&quot;&gt;Telegraph&lt;/a&gt;, individual articles that I doubt made the front pages of any of those.&lt;/li&gt;
&lt;li&gt;(As an aside, the irony of this Facebook group “We sue facebook if they sell our personal data!”(sic.) provides ample material to mull the issue of trust over:&amp;nbsp;&lt;a href=&quot;http://www.facebook.com/group.php?gid=52991492388&quot;&gt;http://www.facebook.com/group.php?gid=52991492388&lt;/a&gt;&amp;nbsp;)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Even though the users’ should assess whether they should trust it, Facebook does allow the community of users to&amp;nbsp;&lt;strong&gt;communicate&lt;/strong&gt;&amp;nbsp;and&amp;nbsp;&lt;strong&gt;discover&lt;/strong&gt;&amp;nbsp;each other in a better manner than would be possible without it.&lt;/li&gt;
&lt;li&gt;It allows the community to&amp;nbsp;&lt;strong&gt;self-promote&lt;/strong&gt;&amp;nbsp;and socially&amp;nbsp;&lt;strong&gt;compare&lt;/strong&gt;&amp;nbsp;based on their&amp;nbsp;&lt;strong&gt;profiles.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Let’s now move swiftly on to consider an arguable failure in this realm – Thomson-Reuters’&amp;nbsp;&lt;a href=&quot;http://www.researcherid.com/&quot;&gt;ResearcherID&lt;/a&gt;:&lt;/p&gt;
&lt;h2&gt;ResearcherID&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;It was created&amp;nbsp;primarily&amp;nbsp;due to the &lt;strong&gt;needs of a publisher&lt;/strong&gt;, who needed to keep track of researchers, who published which paper, co-authors and so on. This is actually a direct need of authors as well, but it is a hard notion to convey as each subject area seems to have its own coping mechanisms and acceptable losses when it comes to citations, metrics and the like.&lt;/li&gt;
&lt;li&gt;It tried to focus on the needs of the users as well, but &lt;strong&gt;without the drive from a community that already existed, it was unclear what its focus is&lt;/strong&gt;. This is perhaps a compromise between the publisher’s desire to make it as widely applicable as possible, and the individual desire to make it relevant to their own, personal community.&lt;/li&gt;
&lt;li&gt;As this was a product by a publishing business, targeted at no specific community, the service&amp;nbsp;inherited&amp;nbsp;much of the same level of trust that the publishing business has within the wider academic community. That is to say, &lt;strong&gt;no-one trusted it&lt;/strong&gt; to remain open and freely reusable without the threat of a hefty subscription introduced at some point later on. Thomson-Reuters own surveys confirmed that the primary reason ResearcherID was under-used was due to a lack of trust, both longterm and short term, in the service.&lt;/li&gt;
&lt;li&gt;Without many profiles in the system, it never reached a tipping-point -&lt;strong&gt; it wasn’t a useful service to use in order to communicate and discover other researchers in your field of work&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Likewise, the ability to self-promote and compare was never tested, as there simply was not a great enough use of this service to do so.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The key failings of the ResearcherID service was that it did not target any community successfully, instead targeting &lt;strong&gt;all&lt;/strong&gt;&amp;nbsp;academic communities, and that it lacked its users’ &lt;strong&gt;trust&lt;/strong&gt; in the service.&lt;/p&gt;
&lt;h2&gt;What does this mean for ORCID?&lt;/h2&gt;
&lt;p&gt;Although ORCID is technically a ‘child’ of the ResearcherID project, it does so with the knowledge of its parent failure and hopefully, as a project, will strive to correct this. While Thomson-Reuters play a part in the ORCID project, they are actively trying to relegate themselves to be no more influential in the&amp;nbsp;proceedings and discussions&amp;nbsp;that of any of the members of the boards administering and plotting out the direction for ORCID.&lt;/p&gt;
&lt;p&gt;As a member of the Technical Advisory Group for ORCID, you can be sure that the aspects of trust and of community involvement will be at the forefront of any discussions I have with that group.&lt;/p&gt;
</description>
     <comments>http://technicalfoundations.ukoln.ac.uk/blog/%E2%80%9C-path-academic-personal-identifiers%E2%80%A6#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/thomas-krichel">Thomas Krichel</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/organisations/facebook">Facebook</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/organisations/thomson-reuters">Thomson-Reuters</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/projects/orcid">ORCID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/projects/repec">RePEc</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/projects/researcherid">ResearcherID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/projects/ssrn">SSRN</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/facebook">Facebook</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/orcid">orcid</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/repec">RePEc</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/researcherid">ResearcherID</category>
 <category domain="http://technicalfoundations.ukoln.ac.uk/overview/topics/ssrn">SSRN</category>
 <pubDate>Fri, 15 Jul 2011 11:43:00 +0000</pubDate>
 <dc:creator>Ben O&#039;Steen</dc:creator>
 <guid isPermaLink="false">22 at http://technicalfoundations.ukoln.ac.uk</guid>
  </item>
  </channel>
</rss>