orcid_client 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +7 -0
  2. data/.env.example +10 -0
  3. data/.gitignore +42 -0
  4. data/.travis.yml +17 -0
  5. data/CHANGELOG.md +0 -0
  6. data/Gemfile +4 -0
  7. data/Gemfile.lock +115 -0
  8. data/LICENSE.md +21 -0
  9. data/README.md +45 -0
  10. data/Rakefile +5 -0
  11. data/lib/orcid_client.rb +3 -0
  12. data/lib/orcid_client/api.rb +75 -0
  13. data/lib/orcid_client/author.rb +56 -0
  14. data/lib/orcid_client/base.rb +21 -0
  15. data/lib/orcid_client/date.rb +61 -0
  16. data/lib/orcid_client/metadata.rb +128 -0
  17. data/lib/orcid_client/notification.rb +125 -0
  18. data/lib/orcid_client/version.rb +3 -0
  19. data/lib/orcid_client/work.rb +200 -0
  20. data/lib/orcid_client/work_type.rb +68 -0
  21. data/orcid_client.gemspec +37 -0
  22. data/resources/common_2.0_rc3/common-2.0_rc3.xsd +1624 -0
  23. data/resources/common_2.0_rc3/samples/common-2.0_rc3.xml +8 -0
  24. data/resources/notification_2.0_rc3/notification-custom-2.0_rc3.xsd +32 -0
  25. data/resources/notification_2.0_rc3/notification-permission-2.0_rc3.xsd +128 -0
  26. data/resources/notification_2.0_rc3/samples/notification-custom-2.0_rc3.xml +45 -0
  27. data/resources/notification_2.0_rc3/samples/notification-permission-2.0_rc3.xml +58 -0
  28. data/resources/record_2.0_rc3/activities-2.0_rc3.xsd +187 -0
  29. data/resources/record_2.0_rc3/address-2.0_rc3.xsd +73 -0
  30. data/resources/record_2.0_rc3/bulk-2.0_rc3.xsd +57 -0
  31. data/resources/record_2.0_rc3/deprecated-2.0_rc3.xsd +80 -0
  32. data/resources/record_2.0_rc3/education-2.0_rc3.xsd +96 -0
  33. data/resources/record_2.0_rc3/email-2.0_rc3.xsd +74 -0
  34. data/resources/record_2.0_rc3/employment-2.0_rc3.xsd +96 -0
  35. data/resources/record_2.0_rc3/error-2.0_rc3.xsd +84 -0
  36. data/resources/record_2.0_rc3/funding-2.0_rc3.xsd +257 -0
  37. data/resources/record_2.0_rc3/history-2.0_rc3.xsd +203 -0
  38. data/resources/record_2.0_rc3/internal-2.0_rc3.xsd +199 -0
  39. data/resources/record_2.0_rc3/keyword-2.0_rc3.xsd +72 -0
  40. data/resources/record_2.0_rc3/other-name-2.0_rc3.xsd +88 -0
  41. data/resources/record_2.0_rc3/peer-review-2.0_rc3.xsd +246 -0
  42. data/resources/record_2.0_rc3/person-2.0_rc3.xsd +98 -0
  43. data/resources/record_2.0_rc3/person-external-identifier-2.0_rc3.xsd +63 -0
  44. data/resources/record_2.0_rc3/personal-details-2.0_rc3.xsd +186 -0
  45. data/resources/record_2.0_rc3/preferences-2.0_rc3.xsd +50 -0
  46. data/resources/record_2.0_rc3/record-2.0_rc3.xsd +105 -0
  47. data/resources/record_2.0_rc3/researcher-url-2.0_rc3.xsd +90 -0
  48. data/resources/record_2.0_rc3/samples/activities-2.0_rc3.xml +236 -0
  49. data/resources/record_2.0_rc3/samples/address-2.0_rc3.xml +16 -0
  50. data/resources/record_2.0_rc3/samples/addresses-2.0_rc3.xml +32 -0
  51. data/resources/record_2.0_rc3/samples/biography-2.0_rc3.xml +10 -0
  52. data/resources/record_2.0_rc3/samples/bulk-work-2.0_rc3.json +56 -0
  53. data/resources/record_2.0_rc3/samples/bulk-work-2.0_rc3.xml +62 -0
  54. data/resources/record_2.0_rc3/samples/credit-name-2.0_rc3.xml +5 -0
  55. data/resources/record_2.0_rc3/samples/deprecated-2.0_rc3.xml +13 -0
  56. data/resources/record_2.0_rc3/samples/education-2.0_rc3.xml +30 -0
  57. data/resources/record_2.0_rc3/samples/education-full-2.0_rc3.xml +40 -0
  58. data/resources/record_2.0_rc3/samples/email-2.0_rc3.xml +16 -0
  59. data/resources/record_2.0_rc3/samples/emails-2.0_rc3.xml +31 -0
  60. data/resources/record_2.0_rc3/samples/employment-2.0_rc3.xml +30 -0
  61. data/resources/record_2.0_rc3/samples/employment-full-2.0_rc3.xml +40 -0
  62. data/resources/record_2.0_rc3/samples/error-2.0_rc3.xml +8 -0
  63. data/resources/record_2.0_rc3/samples/external-identifier-2.0_rc3.xml +20 -0
  64. data/resources/record_2.0_rc3/samples/external-identifiers-2.0_rc3.xml +36 -0
  65. data/resources/record_2.0_rc3/samples/funding-2.0_rc3.xml +65 -0
  66. data/resources/record_2.0_rc3/samples/funding-full-2.0_rc3.xml +75 -0
  67. data/resources/record_2.0_rc3/samples/history-2.0_rc3.xml +22 -0
  68. data/resources/record_2.0_rc3/samples/keyword-2.0_rc3.xml +18 -0
  69. data/resources/record_2.0_rc3/samples/keywords-2.0_rc3.xml +34 -0
  70. data/resources/record_2.0_rc3/samples/name-2.0_rc3.xml +12 -0
  71. data/resources/record_2.0_rc3/samples/other-name-2.0_rc3.xml +16 -0
  72. data/resources/record_2.0_rc3/samples/other-names-2.0_rc3.xml +31 -0
  73. data/resources/record_2.0_rc3/samples/peer-review-2.0_rc3.xml +49 -0
  74. data/resources/record_2.0_rc3/samples/peer-review-full-2.0_rc3.xml +59 -0
  75. data/resources/record_2.0_rc3/samples/person-2.0_rc3.xml +122 -0
  76. data/resources/record_2.0_rc3/samples/personal-details-2.0_rc3.xml +47 -0
  77. data/resources/record_2.0_rc3/samples/preferences-2.0_rc3.xml +4 -0
  78. data/resources/record_2.0_rc3/samples/record-2.0_rc3.xml +420 -0
  79. data/resources/record_2.0_rc3/samples/researcher-url-2.0_rc3.xml +19 -0
  80. data/resources/record_2.0_rc3/samples/researcher-urls-2.0_rc3.xml +21 -0
  81. data/resources/record_2.0_rc3/samples/search-2.0_rc3.xml +368 -0
  82. data/resources/record_2.0_rc3/samples/work-2.0_rc3.xml +49 -0
  83. data/resources/record_2.0_rc3/samples/work-full-2.0_rc3.xml +59 -0
  84. data/resources/record_2.0_rc3/search-2.0_rc3.xsd +82 -0
  85. data/resources/record_2.0_rc3/work-2.0_rc3.xsd +445 -0
  86. data/spec/api_spec.rb +59 -0
  87. data/spec/fixtures/vcr_cassettes/OrcidClient/get/should_get_works.yml +646 -0
  88. data/spec/fixtures/vcr_cassettes/OrcidClient/notifications/post/should_create_notification.yml +104 -0
  89. data/spec/fixtures/vcr_cassettes/OrcidClient/works/delete/should_delete_work.yml +38 -0
  90. data/spec/fixtures/vcr_cassettes/OrcidClient/works/get/should_get_works.yml +646 -0
  91. data/spec/fixtures/vcr_cassettes/OrcidClient/works/post/should_create_work.yml +116 -0
  92. data/spec/fixtures/vcr_cassettes/OrcidClient/works/put/should_update_work.yml +155 -0
  93. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/data.yml +44 -0
  94. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/schema/validates_data.yml +44 -0
  95. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/schema/validates_item_type_work.yml +41 -0
  96. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/citation.yml +50 -0
  97. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/literal.yml +47 -0
  98. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/multiple_titles.yml +47 -0
  99. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/valid.yml +50 -0
  100. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/with_ORCID_IDs.yml +157 -0
  101. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/data.yml +50 -0
  102. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/publication_date.yml +50 -0
  103. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_ORCID_IDs_for_contributors.yml +157 -0
  104. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_data.yml +50 -0
  105. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_work_type_data-set.yml +47 -0
  106. data/spec/fixtures/work.xml +33 -0
  107. data/spec/notification_spec.rb +42 -0
  108. data/spec/spec_helper.rb +32 -0
  109. data/spec/work_spec.rb +100 -0
  110. metadata +392 -0
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <history:history visibility="private"
3
+ xmlns:common="http://www.orcid.org/ns/common" xmlns:history="http://www.orcid.org/ns/history"
4
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation="http://www.orcid.org/ns/history ../history-2.0_rc3.xsd ">
6
+ <history:creation-method>API</history:creation-method>
7
+ <history:completion-date>2001-12-31T12:00:00</history:completion-date>
8
+ <history:submission-date>2001-12-31T12:00:00</history:submission-date>
9
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
10
+ <history:claimed>true</history:claimed>
11
+ <common:source>
12
+ <common:source-orcid>
13
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
14
+ <common:path>8888-8888-8888-8880</common:path>
15
+ <common:host>orcid.org</common:host>
16
+ </common:source-orcid>
17
+ <common:source-name />
18
+ </common:source>
19
+ <history:deactivation-date>2001-12-31T12:00:00</history:deactivation-date>
20
+ <history:verified-email>true</history:verified-email>
21
+ <history:verified-primary-email>true</history:verified-primary-email>
22
+ </history:history>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <keyword:keyword visibility="public" put-code="1"
3
+ xmlns:keyword="http://www.orcid.org/ns/keyword"
4
+ xmlns:common="http://www.orcid.org/ns/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation="http://www.orcid.org/ns/keyword ../keyword-2.0_rc3.xsd ">
6
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
7
+ <common:last-modified-date>2001-12-31T12:00:00
8
+ </common:last-modified-date>
9
+ <common:source>
10
+ <common:source-orcid>
11
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
12
+ <common:path>8888-8888-8888-8880</common:path>
13
+ <common:host>orcid.org</common:host>
14
+ </common:source-orcid>
15
+ <common:source-name />
16
+ </common:source>
17
+ <keyword:content>keyword1</keyword:content>
18
+ </keyword:keyword>
@@ -0,0 +1,34 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <keyword:keywords
3
+ xmlns:keyword="http://www.orcid.org/ns/keyword"
4
+ xmlns:common="http://www.orcid.org/ns/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation="http://www.orcid.org/ns/keyword ../keyword-2.0_rc3.xsd ">
6
+ <keyword:keyword visibility="public" put-code="1">
7
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
8
+ <common:last-modified-date>2001-12-31T12:00:00
9
+ </common:last-modified-date>
10
+ <common:source>
11
+ <common:source-orcid>
12
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
13
+ <common:path>8888-8888-8888-8880</common:path>
14
+ <common:host>orcid.org</common:host>
15
+ </common:source-orcid>
16
+ <common:source-name />
17
+ </common:source>
18
+ <keyword:content>keyword1</keyword:content>
19
+ </keyword:keyword>
20
+ <keyword:keyword visibility="public" put-code="2">
21
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
22
+ <common:last-modified-date>2001-12-31T12:00:00
23
+ </common:last-modified-date>
24
+ <common:source>
25
+ <common:source-orcid>
26
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
27
+ <common:path>8888-8888-8888-8880</common:path>
28
+ <common:host>orcid.org</common:host>
29
+ </common:source-orcid>
30
+ <common:source-name />
31
+ </common:source>
32
+ <keyword:content>keyword2</keyword:content>
33
+ </keyword:keyword>
34
+ </keyword:keywords>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <personal-details:name visibility="public"
3
+ xmlns:personal-details="http://www.orcid.org/ns/personal-details"
4
+ xmlns:common="http://www.orcid.org/ns/common"
5
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6
+ xsi:schemaLocation="http://www.orcid.org/ns/personal-details ../personal-details-2.0_rc3.xsd">
7
+ <common:created-date>2016-04-27T13:22:53.471-06:00</common:created-date>
8
+ <common:last-modified-date>2016-04-27T13:22:53.471-06:00</common:last-modified-date>
9
+ <personal-details:given-names>given-names</personal-details:given-names>
10
+ <personal-details:family-name>family-name</personal-details:family-name>
11
+ <personal-details:credit-name>credit-name</personal-details:credit-name>
12
+ </personal-details:name>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <other-name:other-name visibility="public"
3
+ put-code="1" xmlns:other-name="http://www.orcid.org/ns/other-name"
4
+ xmlns:common="http://www.orcid.org/ns/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation="http://www.orcid.org/ns/other-name ../other-name-2.0_rc3.xsd ">
6
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
7
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
8
+ <common:source>
9
+ <common:source-orcid>
10
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
11
+ <common:path>8888-8888-8888-8880</common:path>
12
+ <common:host>orcid.org</common:host>
13
+ </common:source-orcid>
14
+ </common:source>
15
+ <other-name:content>Other Name #1</other-name:content>
16
+ </other-name:other-name>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <other-name:other-names xmlns:other-name="http://www.orcid.org/ns/other-name"
3
+ xmlns:common="http://www.orcid.org/ns/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:schemaLocation="http://www.orcid.org/ns/other-name ../other-name-2.0_rc3.xsd ">
5
+ <other-name:other-name visibility="public" put-code="1">
6
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
7
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
8
+ <common:source>
9
+ <common:source-orcid>
10
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
11
+ <common:path>8888-8888-8888-8880</common:path>
12
+ <common:host>orcid.org</common:host>
13
+ </common:source-orcid>
14
+ <common:source-name />
15
+ </common:source>
16
+ <other-name:content>Other Name #1</other-name:content>
17
+ </other-name:other-name>
18
+ <other-name:other-name visibility="public" put-code="2">
19
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
20
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
21
+ <common:source>
22
+ <common:source-orcid>
23
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
24
+ <common:path>8888-8888-8888-8880</common:path>
25
+ <common:host>orcid.org</common:host>
26
+ </common:source-orcid>
27
+ <common:source-name />
28
+ </common:source>
29
+ <other-name:content>Other Name #2</other-name:content>
30
+ </other-name:other-name>
31
+ </other-name:other-names>
@@ -0,0 +1,49 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <peer-review:peer-review put-code="12345"
3
+ visibility="private" xmlns:common="http://www.orcid.org/ns/common"
4
+ xmlns:peer-review="http://www.orcid.org/ns/peer-review" 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/peer-review ../peer-review-2.0_rc3.xsd ">
7
+ <peer-review:reviewer-role>reviewer</peer-review:reviewer-role>
8
+ <peer-review:review-identifiers>
9
+ <common:external-id>
10
+ <common:external-id-type>source-work-id</common:external-id-type>
11
+ <common:external-id-value>work:external-identifier-id</common:external-id-value>
12
+ <common:external-id-url>http://orcid.org</common:external-id-url>
13
+ <common:external-id-relationship>self</common:external-id-relationship>
14
+ </common:external-id>
15
+ </peer-review:review-identifiers>
16
+ <peer-review:review-url>peer-review:url</peer-review:review-url>
17
+ <peer-review:review-type>review</peer-review:review-type>
18
+ <peer-review:review-completion-date>
19
+ <common:year>1848</common:year>
20
+ <common:month>02</common:month>
21
+ <common:day>02</common:day>
22
+ </peer-review:review-completion-date>
23
+ <peer-review:review-group-id>orcid-generated:12345</peer-review:review-group-id>
24
+ <peer-review:subject-external-identifier>
25
+ <common:external-id-type>doi</common:external-id-type>
26
+ <common:external-id-value>peer-review:subject-external-identifier-id</common:external-id-value>
27
+ <common:external-id-url>http://orcid.org</common:external-id-url>
28
+ <common:external-id-relationship>self</common:external-id-relationship>
29
+ </peer-review:subject-external-identifier>
30
+ <peer-review:subject-container-name>peer-review:journal title</peer-review:subject-container-name>
31
+ <peer-review:subject-type>journal-article</peer-review:subject-type>
32
+ <peer-review:subject-name>
33
+ <common:title>peer-review:subject-name</common:title>
34
+ <common:translated-title language-code="en">peer-review:subject-translated-name</common:translated-title>
35
+ </peer-review:subject-name>
36
+ <peer-review:subject-url>peer-review:subject-url</peer-review:subject-url>
37
+ <peer-review:convening-organization>
38
+ <common:name>common:name</common:name>
39
+ <common:address>
40
+ <common:city>common:city</common:city>
41
+ <common:region>common:region</common:region>
42
+ <common:country>AF</common:country>
43
+ </common:address>
44
+ <common:disambiguated-organization>
45
+ <common:disambiguated-organization-identifier>common:disambiguated-organization-identifier</common:disambiguated-organization-identifier>
46
+ <common:disambiguation-source>common:disambiguation-source</common:disambiguation-source>
47
+ </common:disambiguated-organization>
48
+ </peer-review:convening-organization>
49
+ </peer-review:peer-review>
@@ -0,0 +1,59 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <peer-review:peer-review put-code="12345"
3
+ visibility="private" xmlns:common="http://www.orcid.org/ns/common"
4
+ xmlns:peer-review="http://www.orcid.org/ns/peer-review" 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/peer-review ../peer-review-2.0_rc3.xsd ">
7
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
8
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
9
+ <common:source>
10
+ <common:source-orcid>
11
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
12
+ <common:path>8888-8888-8888-8880</common:path>
13
+ <common:host>orcid.org</common:host>
14
+ </common:source-orcid>
15
+ <common:source-name />
16
+ </common:source>
17
+ <peer-review:reviewer-role>reviewer</peer-review:reviewer-role>
18
+ <peer-review:review-identifiers>
19
+ <common:external-id>
20
+ <common:external-id-type>source-work-id</common:external-id-type>
21
+ <common:external-id-value>work:external-identifier-id</common:external-id-value>
22
+ <common:external-id-url>http://orcid.org</common:external-id-url>
23
+ <common:external-id-relationship>self</common:external-id-relationship>
24
+ </common:external-id>
25
+ </peer-review:review-identifiers>
26
+ <peer-review:review-url>peer-review:url</peer-review:review-url>
27
+ <peer-review:review-type>review</peer-review:review-type>
28
+ <peer-review:review-completion-date>
29
+ <common:year>1848</common:year>
30
+ <common:month>02</common:month>
31
+ <common:day>02</common:day>
32
+ </peer-review:review-completion-date>
33
+ <peer-review:review-group-id>orcid-generated:12345</peer-review:review-group-id>
34
+ <peer-review:subject-external-identifier>
35
+ <common:external-id-type>doi</common:external-id-type>
36
+ <common:external-id-value>peer-review:subject-external-identifier-id</common:external-id-value>
37
+ <common:external-id-url>http://orcid.org</common:external-id-url>
38
+ <common:external-id-relationship>self</common:external-id-relationship>
39
+ </peer-review:subject-external-identifier>
40
+ <peer-review:subject-container-name>peer-review:subject-container-name</peer-review:subject-container-name>
41
+ <peer-review:subject-type>journal-article</peer-review:subject-type>
42
+ <peer-review:subject-name>
43
+ <common:title>peer-review:subject-name</common:title>
44
+ <common:translated-title language-code="en">peer-review:subject-translated-name</common:translated-title>
45
+ </peer-review:subject-name>
46
+ <peer-review:subject-url>peer-review:subject-url</peer-review:subject-url>
47
+ <peer-review:convening-organization>
48
+ <common:name>common:name</common:name>
49
+ <common:address>
50
+ <common:city>common:city</common:city>
51
+ <common:region>common:region</common:region>
52
+ <common:country>AF</common:country>
53
+ </common:address>
54
+ <common:disambiguated-organization>
55
+ <common:disambiguated-organization-identifier>common:disambiguated-organization-identifier</common:disambiguated-organization-identifier>
56
+ <common:disambiguation-source>common:disambiguation-source</common:disambiguation-source>
57
+ </common:disambiguated-organization>
58
+ </peer-review:convening-organization>
59
+ </peer-review:peer-review>
@@ -0,0 +1,122 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <person:person xmlns:common="http://www.orcid.org/ns/common"
3
+ xmlns:person="http://www.orcid.org/ns/person" xmlns:personal-details="http://www.orcid.org/ns/personal-details"
4
+ xmlns:other-name="http://www.orcid.org/ns/other-name"
5
+ xmlns:researcher-url="http://www.orcid.org/ns/researcher-url"
6
+ xmlns:email="http://www.orcid.org/ns/email"
7
+ xmlns:address="http://www.orcid.org/ns/address"
8
+ xmlns:keyword="http://www.orcid.org/ns/keyword"
9
+ xmlns:external-identifier="http://www.orcid.org/ns/external-identifier"
10
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11
+ xsi:schemaLocation="http://www.orcid.org/ns/person ../person-2.0_rc3.xsd">
12
+ <common:last-modified-date>2016-04-14T20:56:22.279Z</common:last-modified-date>
13
+ <person:name visibility="public">
14
+ <common:created-date>2016-04-14T20:56:22.279Z</common:created-date>
15
+ <common:last-modified-date>2016-04-14T20:56:22.279Z</common:last-modified-date>
16
+ <personal-details:given-names>give-names</personal-details:given-names>
17
+ <personal-details:family-name>family-name</personal-details:family-name>
18
+ <personal-details:credit-name>credit-name</personal-details:credit-name>
19
+ </person:name>
20
+ <other-name:other-names>
21
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
22
+ <other-name:other-name visibility="public"
23
+ put-code="1">
24
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
25
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
26
+ <common:source>
27
+ <common:source-orcid>
28
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
29
+ <common:path>8888-8888-8888-8880</common:path>
30
+ <common:host>orcid.org</common:host>
31
+ </common:source-orcid>
32
+ <common:source-name />
33
+ </common:source>
34
+ <other-name:content>other-name-1</other-name:content>
35
+ </other-name:other-name>
36
+ </other-name:other-names>
37
+ <person:biography visibility="public">
38
+ <common:created-date>2016-04-14T20:56:22.279Z</common:created-date>
39
+ <common:last-modified-date>2016-04-14T20:56:22.279Z</common:last-modified-date>
40
+ <personal-details:content>biography</personal-details:content>
41
+ </person:biography>
42
+ <researcher-url:researcher-urls>
43
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
44
+ <researcher-url:researcher-url put-code="1248"
45
+ visibility="public">
46
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
47
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
48
+ <common:source>
49
+ <common:source-orcid>
50
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
51
+ <common:path>8888-8888-8888-8880</common:path>
52
+ <common:host>orcid.org</common:host>
53
+ </common:source-orcid>
54
+ <common:source-name />
55
+ </common:source>
56
+ <researcher-url:url-name>url-name-1</researcher-url:url-name>
57
+ <researcher-url:url>http://url.com/</researcher-url:url>
58
+ </researcher-url:researcher-url>
59
+ </researcher-url:researcher-urls>
60
+ <email:emails>
61
+ <email:email visibility="public">
62
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
63
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
64
+ <common:source>
65
+ <common:source-orcid>
66
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
67
+ <common:path>8888-8888-8888-8880</common:path>
68
+ <common:host>orcid.org</common:host>
69
+ </common:source-orcid>
70
+ <common:source-name />
71
+ </common:source>
72
+ <email:email>user1@email.com</email:email>
73
+ </email:email>
74
+ </email:emails>
75
+ <address:addresses>
76
+ <address:address visibility="public" put-code="1">
77
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
78
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
79
+ <common:source>
80
+ <common:source-orcid>
81
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
82
+ <common:path>8888-8888-8888-8880</common:path>
83
+ <common:host>orcid.org</common:host>
84
+ </common:source-orcid>
85
+ <common:source-name />
86
+ </common:source>
87
+ <address:country>US</address:country>
88
+ </address:address>
89
+ </address:addresses>
90
+ <keyword:keywords>
91
+ <keyword:keyword visibility="public" put-code="1">
92
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
93
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
94
+ <common:source>
95
+ <common:source-orcid>
96
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
97
+ <common:path>8888-8888-8888-8880</common:path>
98
+ <common:host>orcid.org</common:host>
99
+ </common:source-orcid>
100
+ <common:source-name />
101
+ </common:source>
102
+ <keyword:content>keyword1</keyword:content>
103
+ </keyword:keyword>
104
+ </keyword:keywords>
105
+ <external-identifier:external-identifiers>
106
+ <external-identifier:external-identifier visibility="public" put-code="1">
107
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
108
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
109
+ <common:source>
110
+ <common:source-orcid>
111
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
112
+ <common:path>8888-8888-8888-8880</common:path>
113
+ <common:host>orcid.org</common:host>
114
+ </common:source-orcid>
115
+ <common:source-name />
116
+ </common:source>
117
+ <common:external-id-type>type-1</common:external-id-type>
118
+ <common:external-id-value>value-1</common:external-id-value>
119
+ <common:external-id-url>http://url.com/1</common:external-id-url>
120
+ </external-identifier:external-identifier>
121
+ </external-identifier:external-identifiers>
122
+ </person:person>
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <personal-details:personal-details
3
+ xmlns:personal-details="http://www.orcid.org/ns/personal-details"
4
+ xmlns:other-name="http://www.orcid.org/ns/other-name" xmlns:common="http://www.orcid.org/ns/common"
5
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6
+ xsi:schemaLocation="http://www.orcid.org/ns/personal-details ../personal-details-2.0_rc3.xsd">
7
+ <personal-details:name visibility="public">
8
+ <personal-details:given-names>Give Names</personal-details:given-names>
9
+ <personal-details:family-name>Family Name</personal-details:family-name>
10
+ <personal-details:credit-name>Credit Name</personal-details:credit-name>
11
+ </personal-details:name>
12
+ <other-name:other-names>
13
+ <other-name:other-name visibility="public"
14
+ put-code="1">
15
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
16
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
17
+ <common:source>
18
+ <common:source-orcid>
19
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
20
+ <common:path>8888-8888-8888-8880</common:path>
21
+ <common:host>orcid.org</common:host>
22
+ </common:source-orcid>
23
+ <common:source-name />
24
+ </common:source>
25
+ <other-name:content>Other Name #1</other-name:content>
26
+ </other-name:other-name>
27
+ <other-name:other-name visibility="limited"
28
+ put-code="2">
29
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
30
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
31
+ <common:source>
32
+ <common:source-orcid>
33
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
34
+ <common:path>8888-8888-8888-8880</common:path>
35
+ <common:host>orcid.org</common:host>
36
+ </common:source-orcid>
37
+ <common:source-name />
38
+ </common:source>
39
+ <other-name:content>Other Name #2</other-name:content>
40
+ </other-name:other-name>
41
+ </other-name:other-names>
42
+ <personal-details:biography visibility="public">
43
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
44
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
45
+ <personal-details:content>Biography</personal-details:content>
46
+ </personal-details:biography>
47
+ </personal-details:personal-details>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <preferences:preferences xmlns:common="http://www.orcid.org/ns/common" xmlns:preferences="http://www.orcid.org/ns/preferences" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.orcid.org/ns/preferences ../preferences-2.0_rc3.xsd ">
3
+ <preferences:locale>en</preferences:locale>
4
+ </preferences:preferences>
@@ -0,0 +1,420 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <record:record xmlns:activities="http://www.orcid.org/ns/activities"
3
+ xmlns:personal-details="http://www.orcid.org/ns/personal-details"
4
+ xmlns:other-name="http://www.orcid.org/ns/other-name"
5
+ xmlns:researcher-url="http://www.orcid.org/ns/researcher-url"
6
+ xmlns:email="http://www.orcid.org/ns/email" xmlns:address="http://www.orcid.org/ns/address"
7
+ xmlns:keyword="http://www.orcid.org/ns/keyword"
8
+ xmlns:external-identifier="http://www.orcid.org/ns/external-identifier"
9
+ xmlns:employment="http://www.orcid.org/ns/employment" xmlns:common="http://www.orcid.org/ns/common"
10
+ xmlns:deprecated="http://www.orcid.org/ns/deprecated" xmlns:education="http://www.orcid.org/ns/education"
11
+ xmlns:funding="http://www.orcid.org/ns/funding" xmlns:history="http://www.orcid.org/ns/history"
12
+ xmlns:internal="http://www.orcid.org/ns/internal" xmlns:person="http://www.orcid.org/ns/person"
13
+ xmlns:preferences="http://www.orcid.org/ns/preferences" xmlns:record="http://www.orcid.org/ns/record"
14
+ xmlns:peer-review="http://www.orcid.org/ns/peer-review"
15
+ xmlns:work="http://www.orcid.org/ns/work" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
16
+ xsi:schemaLocation="http://www.orcid.org/ns/record ../record-2.0_rc3.xsd ">
17
+ <common:orcid-identifier>
18
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
19
+ <common:path>8888-8888-8888-8880</common:path>
20
+ <common:host>orcid.org</common:host>
21
+ </common:orcid-identifier>
22
+ <deprecated:deprecated>
23
+ <deprecated:deprecated-date>2001-12-31T12:00:00</deprecated:deprecated-date>
24
+ <deprecated:primary-record>
25
+ <common:orcid-identifier>
26
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
27
+ <common:path>8888-8888-8888-8880</common:path>
28
+ <common:host>orcid.org</common:host>
29
+ </common:orcid-identifier>
30
+ </deprecated:primary-record>
31
+ </deprecated:deprecated>
32
+ <preferences:preferences>
33
+ <preferences:locale>en</preferences:locale>
34
+ </preferences:preferences>
35
+ <history:history visibility="private">
36
+ <history:creation-method>API</history:creation-method>
37
+ <history:completion-date>2001-12-31T12:00:00</history:completion-date>
38
+ <history:submission-date>2001-12-31T12:00:00</history:submission-date>
39
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
40
+ <history:claimed>true</history:claimed>
41
+ <common:source>
42
+ <common:source-orcid>
43
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
44
+ <common:path>8888-8888-8888-8880</common:path>
45
+ <common:host>orcid.org</common:host>
46
+
47
+ </common:source-orcid>
48
+ <common:source-name />
49
+ </common:source>
50
+ <history:deactivation-date>2001-12-31T12:00:00</history:deactivation-date>
51
+ <history:verified-email>true</history:verified-email>
52
+ <history:verified-primary-email>true</history:verified-primary-email>
53
+ </history:history>
54
+ <person:person path="http://orcid.org/8888-8888-8888-8880">
55
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
56
+ <person:name visibility="public" path="http://orcid.org/8888-8888-8888-8880/personal-details">
57
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
58
+ <personal-details:given-names>give-names</personal-details:given-names>
59
+ <personal-details:family-name>family-name</personal-details:family-name>
60
+ <personal-details:credit-name>credit-name</personal-details:credit-name>
61
+ </person:name>
62
+ <other-name:other-names path="http://orcid.org/8888-8888-8888-8880/other-names">
63
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
64
+ <other-name:other-name visibility="public" put-code="1" display-index="0">
65
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
66
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
67
+ <common:source>
68
+ <common:source-orcid>
69
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
70
+ <common:path>8888-8888-8888-8880</common:path>
71
+ <common:host>orcid.org</common:host>
72
+ </common:source-orcid>
73
+ <common:source-name />
74
+ </common:source>
75
+ <other-name:content>other-name-1</other-name:content>
76
+ </other-name:other-name>
77
+ </other-name:other-names>
78
+ <person:biography visibility="public" path="http://orcid.org/8888-8888-8888-8880/biography">
79
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
80
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
81
+ <personal-details:content>biography</personal-details:content>
82
+ </person:biography>
83
+ <researcher-url:researcher-urls path="http://orcid.org/8888-8888-8888-8880/researcher-urls">
84
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
85
+ <researcher-url:researcher-url put-code="1248" visibility="public" display-index="0">
86
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
87
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
88
+ <common:source>
89
+ <common:source-orcid>
90
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
91
+ <common:path>8888-8888-8888-8880</common:path>
92
+ <common:host>orcid.org</common:host>
93
+ </common:source-orcid>
94
+ <common:source-name />
95
+ </common:source>
96
+ <researcher-url:url-name>url-name-1</researcher-url:url-name>
97
+ <researcher-url:url>http://url.com/</researcher-url:url>
98
+ </researcher-url:researcher-url>
99
+ </researcher-url:researcher-urls>
100
+ <email:emails path="http://orcid.org/8888-8888-8888-8880/email">
101
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
102
+ <email:email visibility="public" put-code="0">
103
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
104
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
105
+ <common:source>
106
+ <common:source-orcid>
107
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
108
+ <common:path>8888-8888-8888-8880</common:path>
109
+ <common:host>orcid.org</common:host>
110
+ </common:source-orcid>
111
+ <common:source-name />
112
+ </common:source>
113
+ <email:email>user1@email.com</email:email>
114
+ </email:email>
115
+ </email:emails>
116
+ <address:addresses path="http://orcid.org/8888-8888-8888-8880/address">
117
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
118
+ <address:address visibility="public" put-code="1" display-index="0">
119
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
120
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
121
+ <common:source>
122
+ <common:source-orcid>
123
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
124
+ <common:path>8888-8888-8888-8880</common:path>
125
+ <common:host>orcid.org</common:host>
126
+ </common:source-orcid>
127
+ <common:source-name />
128
+ </common:source>
129
+ <address:country>US</address:country>
130
+ </address:address>
131
+ </address:addresses>
132
+ <keyword:keywords path="http://orcid.org/8888-8888-8888-8880/keywords">
133
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
134
+ <keyword:keyword visibility="public" put-code="1" display-index="0">
135
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
136
+ <common:last-modified-date>2001-12-31T12:00:00
137
+ </common:last-modified-date>
138
+ <common:source>
139
+ <common:source-orcid>
140
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
141
+ <common:path>8888-8888-8888-8880</common:path>
142
+ <common:host>orcid.org</common:host>
143
+ </common:source-orcid>
144
+ <common:source-name />
145
+ </common:source>
146
+ <keyword:content>keyword1</keyword:content>
147
+ </keyword:keyword>
148
+ </keyword:keywords>
149
+ <external-identifier:external-identifiers path="http://orcid.org/8888-8888-8888-8880/external-identifiers">
150
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
151
+ <external-identifier:external-identifier visibility="public" put-code="1" display-index="0">
152
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
153
+ <common:last-modified-date>2001-12-31T12:00:00
154
+ </common:last-modified-date>
155
+ <common:source>
156
+ <common:source-orcid>
157
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
158
+ <common:path>8888-8888-8888-8880</common:path>
159
+ <common:host>orcid.org</common:host>
160
+ </common:source-orcid>
161
+ <common:source-name />
162
+ </common:source>
163
+ <common:external-id-type>type-1</common:external-id-type>
164
+ <common:external-id-value>value-1</common:external-id-value>
165
+ <common:external-id-url>http://url.com/1</common:external-id-url>
166
+ <common:external-id-relationship>part-of</common:external-id-relationship>
167
+ </external-identifier:external-identifier>
168
+ </external-identifier:external-identifiers>
169
+ </person:person>
170
+ <activities:activities-summary>
171
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
172
+ <activities:educations>
173
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
174
+ <education:education-summary put-code="0" visibility="private">
175
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
176
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
177
+ <common:source>
178
+ <common:source-orcid>
179
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
180
+ <common:path>8888-8888-8888-8880</common:path>
181
+ <common:host>orcid.org</common:host>
182
+ </common:source-orcid>
183
+ <common:source-name />
184
+ </common:source>
185
+ <education:department-name>education:department-name</education:department-name>
186
+ <education:role-title>education:role-title</education:role-title>
187
+ <common:start-date>
188
+ <common:year>1848</common:year>
189
+ <common:month>02</common:month>
190
+ <common:day>02</common:day>
191
+ </common:start-date>
192
+ <common:end-date>
193
+ <common:year>1848</common:year>
194
+ <common:month>02</common:month>
195
+ <common:day>02</common:day>
196
+ </common:end-date>
197
+ <education:organization>
198
+ <common:name>common:name</common:name>
199
+ <common:address>
200
+ <common:city>common:city</common:city>
201
+ <common:region>common:region</common:region>
202
+ <common:country>AF</common:country>
203
+ </common:address>
204
+ <common:disambiguated-organization>
205
+ <common:disambiguated-organization-identifier>common:disambiguated-organization-identifier</common:disambiguated-organization-identifier>
206
+ <common:disambiguation-source>common:disambiguation-source</common:disambiguation-source>
207
+ </common:disambiguated-organization>
208
+ </education:organization>
209
+ </education:education-summary>
210
+ </activities:educations>
211
+ <activities:employments>
212
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
213
+ <employment:employment-summary
214
+ put-code="0" visibility="private">
215
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
216
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
217
+ <common:source>
218
+ <common:source-orcid>
219
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
220
+ <common:path>8888-8888-8888-8880</common:path>
221
+ <common:host>orcid.org</common:host>
222
+
223
+ </common:source-orcid>
224
+ <common:source-name />
225
+ </common:source>
226
+ <employment:department-name>employment:department-name</employment:department-name>
227
+ <employment:role-title>employment:role-title</employment:role-title>
228
+ <common:start-date>
229
+ <common:year>1848</common:year>
230
+ <common:month>02</common:month>
231
+ <common:day>02</common:day>
232
+ </common:start-date>
233
+ <common:end-date>
234
+ <common:year>1848</common:year>
235
+ <common:month>02</common:month>
236
+ <common:day>02</common:day>
237
+ </common:end-date>
238
+ <employment:organization>
239
+ <common:name>common:name</common:name>
240
+ <common:address>
241
+ <common:city>common:city</common:city>
242
+ <common:region>common:region</common:region>
243
+ <common:country>AF</common:country>
244
+ </common:address>
245
+ <common:disambiguated-organization>
246
+ <common:disambiguated-organization-identifier>common:disambiguated-organization-identifier</common:disambiguated-organization-identifier>
247
+ <common:disambiguation-source>common:disambiguation-source</common:disambiguation-source>
248
+ </common:disambiguated-organization>
249
+ </employment:organization>
250
+ </employment:employment-summary>
251
+ </activities:employments>
252
+ <activities:fundings>
253
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
254
+ <activities:group>
255
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
256
+ <common:external-ids>
257
+ <common:external-id>
258
+ <common:external-id-type>grant_number</common:external-id-type>
259
+ <common:external-id-value>external-id-value</common:external-id-value>
260
+ </common:external-id>
261
+ </common:external-ids>
262
+ <funding:summary put-code="0" visibility="private">
263
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
264
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
265
+ <common:source>
266
+ <common:source-orcid>
267
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
268
+ <common:path>8888-8888-8888-8880</common:path>
269
+ <common:host>orcid.org</common:host>
270
+ </common:source-orcid>
271
+ <common:source-name />
272
+ </common:source>
273
+ <funding:title>
274
+ <common:title>common:title</common:title>
275
+ <common:translated-title language-code="en">common:translated-title</common:translated-title>
276
+ </funding:title>
277
+ <common:external-ids>
278
+ <common:external-id>
279
+ <common:external-id-type>grant_number</common:external-id-type>
280
+ <common:external-id-value>external-id-value</common:external-id-value>
281
+ <common:external-id-url>http://tempuri.org</common:external-id-url>
282
+ <common:external-id-relationship>self</common:external-id-relationship>
283
+ </common:external-id>
284
+ </common:external-ids>
285
+ <funding:type>grant</funding:type>
286
+ <common:start-date>
287
+ <common:year>1848</common:year>
288
+ <common:month>02</common:month>
289
+ <common:day>02</common:day>
290
+ </common:start-date>
291
+ <common:end-date>
292
+ <common:year>1848</common:year>
293
+ <common:month>02</common:month>
294
+ <common:day>02</common:day>
295
+ </common:end-date>
296
+ </funding:summary>
297
+ </activities:group>
298
+ </activities:fundings>
299
+ <activities:peer-reviews>
300
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
301
+ <activities:group>
302
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
303
+ <common:external-ids>
304
+ <common:external-id>
305
+ <common:external-id-type>something</common:external-id-type>
306
+ <common:external-id-value>external-id-value</common:external-id-value>
307
+ <common:external-id-url>http://orcid.org</common:external-id-url>
308
+ <common:external-id-relationship>self</common:external-id-relationship>
309
+ </common:external-id>
310
+ </common:external-ids>
311
+ <peer-review:summary put-code="12345" visibility="private" display-index="0">
312
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
313
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
314
+ <common:source>
315
+ <common:source-orcid>
316
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
317
+ <common:path>8888-8888-8888-8880</common:path>
318
+ <common:host>orcid.org</common:host>
319
+ </common:source-orcid>
320
+ <common:source-name/>
321
+ </common:source>
322
+ <common:external-ids>
323
+ <common:external-id>
324
+ <common:external-id-type>something</common:external-id-type>
325
+ <common:external-id-value>external-id-value</common:external-id-value>
326
+ <common:external-id-url>http://orcid.org</common:external-id-url>
327
+ <common:external-id-relationship>self</common:external-id-relationship>
328
+ </common:external-id>
329
+ </common:external-ids>
330
+ <peer-review:completion-date>
331
+ <common:year>1848</common:year>
332
+ <common:month>02</common:month>
333
+ <common:day>02</common:day>
334
+ </peer-review:completion-date>
335
+ <peer-review:review-group-id>orcid-generated:12345</peer-review:review-group-id>
336
+ <peer-review:convening-organization>
337
+ <common:name>common:name</common:name>
338
+ <common:address>
339
+ <common:city>common:city</common:city>
340
+ <common:region>common:region</common:region>
341
+ <common:country>AF</common:country>
342
+ </common:address>
343
+ <common:disambiguated-organization>
344
+ <common:disambiguated-organization-identifier>common:disambiguated-organization-identifier</common:disambiguated-organization-identifier>
345
+ <common:disambiguation-source>common:disambiguation-source</common:disambiguation-source>
346
+ </common:disambiguated-organization>
347
+ </peer-review:convening-organization>
348
+ </peer-review:summary>
349
+ </activities:group>
350
+ </activities:peer-reviews>
351
+ <activities:works>
352
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
353
+ <activities:group>
354
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
355
+ <common:external-ids>
356
+ <common:external-id>
357
+ <common:external-id-type>agr</common:external-id-type>
358
+ <common:external-id-value>external-id-value</common:external-id-value>
359
+ <common:external-id-url>http://orcid.org</common:external-id-url>
360
+ <common:external-id-relationship>part-of</common:external-id-relationship>
361
+ </common:external-id>
362
+ </common:external-ids>
363
+ <work:work-summary put-code="0" visibility="private">
364
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
365
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
366
+ <common:source>
367
+ <common:source-orcid>
368
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
369
+ <common:path>8888-8888-8888-8880</common:path>
370
+ <common:host>orcid.org</common:host>
371
+ </common:source-orcid>
372
+ <common:source-name />
373
+ </common:source>
374
+ <work:title>
375
+ <common:title>common:title</common:title>
376
+ <common:subtitle />
377
+ <common:translated-title language-code="en">common:translated-title</common:translated-title>
378
+ </work:title>
379
+ <common:external-ids>
380
+ <common:external-id>
381
+ <common:external-id-type>agr</common:external-id-type>
382
+ <common:external-id-value>external-id-value</common:external-id-value>
383
+ <common:external-id-url>http://tempuri.org</common:external-id-url>
384
+ <common:external-id-relationship>self</common:external-id-relationship>
385
+ </common:external-id>
386
+ </common:external-ids>
387
+ <work:type>artistic-performance</work:type>
388
+ <common:publication-date>
389
+ <common:year>1848</common:year>
390
+ <common:month>02</common:month>
391
+ <common:day>02</common:day>
392
+ </common:publication-date>
393
+ </work:work-summary>
394
+ </activities:group>
395
+ </activities:works>
396
+ </activities:activities-summary>
397
+ <internal:internal visibility="private">
398
+ <internal:security-details>
399
+ <internal:encrypted-password />
400
+ <internal:security-question-id>0</internal:security-question-id>
401
+ <internal:encrypted-security-answer />
402
+ <internal:encrypted-verification-code />
403
+ </internal:security-details>
404
+ <internal:preferences>
405
+ <internal:send-email-frequency-days>internal:send-email-frequency-days</internal:send-email-frequency-days>
406
+ <internal:send-change-notifications>true</internal:send-change-notifications>
407
+ <internal:send-orcid-news>true</internal:send-orcid-news>
408
+ <internal:send-member-update-requests>true</internal:send-member-update-requests>
409
+ <internal:activities-visibility-default>private</internal:activities-visibility-default>
410
+ <internal:developer-tools-enabled>true</internal:developer-tools-enabled>
411
+ </internal:preferences>
412
+ <common:group-orcid-identifier>
413
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
414
+ <common:path>8888-8888-8888-8880</common:path>
415
+ <common:host>orcid.org</common:host>
416
+ </common:group-orcid-identifier>
417
+ <internal:referred-by>internal:referred-by</internal:referred-by>
418
+ <internal:salesforce-id>123456789012345</internal:salesforce-id>
419
+ </internal:internal>
420
+ </record:record>