orcid_client 0.8 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +39 -0
  3. data/.github/workflows/changelog.yml +36 -0
  4. data/.github/workflows/release.yml +48 -0
  5. data/CHANGELOG.md +169 -0
  6. data/Gemfile.lock +135 -117
  7. data/README.md +6 -6
  8. data/lib/orcid_client/api.rb +2 -1
  9. data/lib/orcid_client/base.rb +1 -1
  10. data/lib/orcid_client/external_identifier.rb +1 -1
  11. data/lib/orcid_client/version.rb +1 -1
  12. data/lib/orcid_client/work.rb +8 -5
  13. data/orcid_client.gemspec +3 -4
  14. data/resources/README.md +48 -43
  15. data/resources/common_3.0/common-3.0.xsd +998 -0
  16. data/resources/common_3.0/samples/common-3.0.xml +8 -0
  17. data/resources/common_3.0/samples/common-3.0_external-identifier.xml +11 -0
  18. data/resources/notification_3.0/README.md +130 -0
  19. data/resources/notification_3.0/images/notification-intro.jpg +0 -0
  20. data/resources/notification_3.0/images/notification-subject.jpg +0 -0
  21. data/resources/notification_3.0/notification-custom-3.0.xsd +38 -0
  22. data/resources/notification_3.0/notification-permission-3.0.xsd +134 -0
  23. data/resources/notification_3.0/samples/notification-custom-3.0.xml +27 -0
  24. data/resources/notification_3.0/samples/notification-permission-3.0.xml +58 -0
  25. data/resources/record_3.0/README.md +408 -0
  26. data/resources/record_3.0/activities-3.0.xsd +456 -0
  27. data/resources/record_3.0/address-3.0.xsd +73 -0
  28. data/resources/record_3.0/bulk-3.0.xsd +57 -0
  29. data/resources/record_3.0/distinction-3.0.xsd +51 -0
  30. data/resources/record_3.0/education-3.0.xsd +51 -0
  31. data/resources/record_3.0/email-3.0.xsd +76 -0
  32. data/resources/record_3.0/employment-3.0.xsd +51 -0
  33. data/resources/record_3.0/error-3.0.xsd +84 -0
  34. data/resources/record_3.0/expanded-search-3.0.xsd +114 -0
  35. data/resources/record_3.0/funding-3.0.xsd +204 -0
  36. data/resources/record_3.0/history-3.0.xsd +185 -0
  37. data/resources/record_3.0/invited-position-3.0.xsd +50 -0
  38. data/resources/record_3.0/keyword-3.0.xsd +72 -0
  39. data/resources/record_3.0/membership-3.0.xsd +51 -0
  40. data/resources/record_3.0/other-name-3.0.xsd +78 -0
  41. data/resources/record_3.0/peer-review-3.0.xsd +263 -0
  42. data/resources/record_3.0/person-3.0.xsd +85 -0
  43. data/resources/record_3.0/person-external-identifier-3.0.xsd +63 -0
  44. data/resources/record_3.0/personal-details-3.0.xsd +162 -0
  45. data/resources/record_3.0/preferences-3.0.xsd +50 -0
  46. data/resources/record_3.0/qualification-3.0.xsd +50 -0
  47. data/resources/record_3.0/record-3.0.xsd +91 -0
  48. data/resources/record_3.0/research-resource-3.0.xsd +144 -0
  49. data/resources/record_3.0/researcher-url-3.0.xsd +86 -0
  50. data/resources/record_3.0/samples/read_samples/activities-3.0.xml +742 -0
  51. data/resources/record_3.0/samples/read_samples/address-3.0.xml +16 -0
  52. data/resources/record_3.0/samples/read_samples/addresses-3.0.xml +32 -0
  53. data/resources/record_3.0/samples/read_samples/biography-3.0.xml +10 -0
  54. data/resources/record_3.0/samples/read_samples/bulk-work-err.xml +45 -0
  55. data/resources/record_3.0/samples/read_samples/credit-name-3.0.xml +5 -0
  56. data/resources/record_3.0/samples/read_samples/distinction-3.0.xml +55 -0
  57. data/resources/record_3.0/samples/read_samples/distinctions-3.0.xml +106 -0
  58. data/resources/record_3.0/samples/read_samples/education-3.0.xml +55 -0
  59. data/resources/record_3.0/samples/read_samples/education-full-3.0.xml +55 -0
  60. data/resources/record_3.0/samples/read_samples/educations-3.0.xml +118 -0
  61. data/resources/record_3.0/samples/read_samples/email-3.0.xml +16 -0
  62. data/resources/record_3.0/samples/read_samples/emails-3.0.xml +31 -0
  63. data/resources/record_3.0/samples/read_samples/employment-3.0.xml +55 -0
  64. data/resources/record_3.0/samples/read_samples/employment-full-3.0.xml +55 -0
  65. data/resources/record_3.0/samples/read_samples/employments-3.0.xml +108 -0
  66. data/resources/record_3.0/samples/read_samples/error-3.0.xml +8 -0
  67. data/resources/record_3.0/samples/read_samples/external-identifier-3.0.xml +21 -0
  68. data/resources/record_3.0/samples/read_samples/external-identifiers-3.0.xml +38 -0
  69. data/resources/record_3.0/samples/read_samples/full-record-3.0.json +2332 -0
  70. data/resources/record_3.0/samples/read_samples/funding-3.0.xml +75 -0
  71. data/resources/record_3.0/samples/read_samples/funding-full-3.0.xml +75 -0
  72. data/resources/record_3.0/samples/read_samples/fundings-3.0.xml +139 -0
  73. data/resources/record_3.0/samples/read_samples/history-3.0.xml +22 -0
  74. data/resources/record_3.0/samples/read_samples/invited-position-3.0.xml +55 -0
  75. data/resources/record_3.0/samples/read_samples/invited-positions-3.0.xml +106 -0
  76. data/resources/record_3.0/samples/read_samples/keyword-3.0.xml +18 -0
  77. data/resources/record_3.0/samples/read_samples/keywords-3.0.xml +34 -0
  78. data/resources/record_3.0/samples/read_samples/membership-3.0.xml +55 -0
  79. data/resources/record_3.0/samples/read_samples/memberships-3.0.xml +106 -0
  80. data/resources/record_3.0/samples/read_samples/name-3.0.xml +12 -0
  81. data/resources/record_3.0/samples/read_samples/other-name-3.0.xml +16 -0
  82. data/resources/record_3.0/samples/read_samples/other-names-3.0.xml +31 -0
  83. data/resources/record_3.0/samples/read_samples/peer-review-3.0.xml +59 -0
  84. data/resources/record_3.0/samples/read_samples/peer-review-full-3.0.xml +59 -0
  85. data/resources/record_3.0/samples/read_samples/peer-reviews-3.0.xml +76 -0
  86. data/resources/record_3.0/samples/read_samples/person-3.0.xml +122 -0
  87. data/resources/record_3.0/samples/read_samples/personal-details-3.0.xml +47 -0
  88. data/resources/record_3.0/samples/read_samples/preferences-3.0.xml +4 -0
  89. data/resources/record_3.0/samples/read_samples/qualification-3.0.xml +55 -0
  90. data/resources/record_3.0/samples/read_samples/qualifications-3.0.xml +106 -0
  91. data/resources/record_3.0/samples/read_samples/record-3.0.xml +770 -0
  92. data/resources/record_3.0/samples/read_samples/research-resource-3.0.xml +138 -0
  93. data/resources/record_3.0/samples/read_samples/research-resources-3.0.xml +143 -0
  94. data/resources/record_3.0/samples/read_samples/researcher-url-3.0.xml +19 -0
  95. data/resources/record_3.0/samples/read_samples/researcher-urls-3.0.xml +21 -0
  96. data/resources/record_3.0/samples/read_samples/search-3.0.xml +14 -0
  97. data/resources/record_3.0/samples/read_samples/service-3.0.xml +55 -0
  98. data/resources/record_3.0/samples/read_samples/services-3.0.xml +106 -0
  99. data/resources/record_3.0/samples/read_samples/work-3.0.xml +65 -0
  100. data/resources/record_3.0/samples/read_samples/work-full-3.0.xml +65 -0
  101. data/resources/record_3.0/samples/read_samples/works-3.0.xml +148 -0
  102. data/resources/record_3.0/samples/write_samples/address-3.0.xml +6 -0
  103. data/resources/record_3.0/samples/write_samples/bulk-work-3.0.json +53 -0
  104. data/resources/record_3.0/samples/write_samples/bulk-work-3.0.xml +47 -0
  105. data/resources/record_3.0/samples/write_samples/distinction-3.0.xml +46 -0
  106. data/resources/record_3.0/samples/write_samples/education-3.0.xml +45 -0
  107. data/resources/record_3.0/samples/write_samples/employment-3.0.xml +45 -0
  108. data/resources/record_3.0/samples/write_samples/external-identifier-3.0.xml +11 -0
  109. data/resources/record_3.0/samples/write_samples/funding-3.0.xml +44 -0
  110. data/resources/record_3.0/samples/write_samples/invited-position-3.0.xml +45 -0
  111. data/resources/record_3.0/samples/write_samples/keyword-3.0.xml +7 -0
  112. data/resources/record_3.0/samples/write_samples/membership-3.0.xml +45 -0
  113. data/resources/record_3.0/samples/write_samples/other-name-3.0.xml +6 -0
  114. data/resources/record_3.0/samples/write_samples/peer-review-full-3.0.xml +48 -0
  115. data/resources/record_3.0/samples/write_samples/peer-review-full-award-subject-type-3.0.xml +48 -0
  116. data/resources/record_3.0/samples/write_samples/peer-review-simple-3.0.xml +32 -0
  117. data/resources/record_3.0/samples/write_samples/qualification-3.0.xml +45 -0
  118. data/resources/record_3.0/samples/write_samples/research-resource-3.0.xml +110 -0
  119. data/resources/record_3.0/samples/write_samples/researcher-url-3.0-no-name.xml +6 -0
  120. data/resources/record_3.0/samples/write_samples/researcher-url-3.0.xml +7 -0
  121. data/resources/record_3.0/samples/write_samples/service-3.0.xml +45 -0
  122. data/resources/record_3.0/samples/write_samples/work-full-3.0.xml +60 -0
  123. data/resources/record_3.0/samples/write_samples/work-simple-3.0.xml +18 -0
  124. data/resources/record_3.0/search-3.0.xsd +62 -0
  125. data/resources/record_3.0/service-3.0.xsd +51 -0
  126. data/resources/record_3.0/work-3.0.xsd +269 -0
  127. data/spec/api_spec.rb +3 -3
  128. data/spec/author_spec.rb +1 -1
  129. data/spec/external_identifier_spec.rb +2 -2
  130. data/spec/fixtures/external_identifier.xml +1 -1
  131. data/spec/fixtures/vcr_cassettes/OrcidClient/works/get/should_get_works.yml +23 -10
  132. data/spec/fixtures/vcr_cassettes/OrcidClient/works/post/should_create_work.yml +71 -74
  133. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/data.yml +43 -55
  134. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/schema/validates_data.yml +43 -55
  135. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/schema/validates_item_type_work.yml +39 -44
  136. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/literal.yml +43 -51
  137. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/valid.yml +40 -48
  138. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/with_ORCID_IDs.yml +39 -30
  139. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/data.yml +41 -49
  140. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/publication_date.yml +40 -48
  141. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_ORCID_IDs_for_contributors.yml +40 -31
  142. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_data.yml +40 -48
  143. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_work_from_DataCite_staging_system.yml +104 -0
  144. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_work_type_data-set.yml +40 -45
  145. data/spec/fixtures/work.xml +12 -16
  146. data/spec/notification_spec.rb +11 -10
  147. data/spec/work_spec.rb +26 -63
  148. metadata +133 -30
  149. data/.travis.yml +0 -17
  150. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/multiple_titles.yml +0 -102
  151. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_work_from_DataCite_test_system.yml +0 -95
  152. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/user_example/fail/valid.yml +0 -95
@@ -0,0 +1,106 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <activities:memberships
3
+ path="/8888-8888-8888-8880/employments"
4
+ xmlns:activities="http://www.orcid.org/ns/activities" xmlns:employment="http://www.orcid.org/ns/employment"
5
+ xmlns:common="http://www.orcid.org/ns/common" xmlns:membership="http://www.orcid.org/ns/membership"
6
+ xmlns:funding="http://www.orcid.org/ns/funding" xmlns:work="http://www.orcid.org/ns/work"
7
+ xmlns:peer-review="http://www.orcid.org/ns/peer-review" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
+ xsi:schemaLocation="http://www.orcid.org/ns/activities ../activities-3.0.xsd ">
9
+ <common:last-modified-date>2017-01-18T13:32:45.500-06:00</common:last-modified-date>
10
+ <activities:affiliation-group>
11
+ <common:last-modified-date>2001-12-31T12:00:00
12
+ </common:last-modified-date>
13
+ <common:external-ids>
14
+ <common:external-id>
15
+ <common:external-id-type>agr</common:external-id-type>
16
+ <common:external-id-value>external-id-value
17
+ </common:external-id-value>
18
+ <common:external-id-url>http://orcid.org</common:external-id-url>
19
+ <common:external-id-relationship>part-of</common:external-id-relationship>
20
+ </common:external-id>
21
+ </common:external-ids>
22
+ <membership:membership-summary put-code="1"
23
+ path="/8888-8888-8888-8888/employment/1" visibility="public">
24
+ <common:created-date>2017-01-18T13:32:45.500-06:00</common:created-date>
25
+ <common:last-modified-date>2017-01-18T13:32:45.500-06:00</common:last-modified-date>
26
+ <common:source>
27
+ <common:source-orcid>
28
+ <common:uri>https://orcid.org/8888-8888-8888-8888</common:uri>
29
+ <common:path>8888-8888-8888-8888</common:path>
30
+ <common:host>orcid.org</common:host>
31
+ </common:source-orcid>
32
+ <common:source-name>User One Credit name</common:source-name>
33
+ </common:source>
34
+ <common:department-name>membership</common:department-name>
35
+ <common:start-date>
36
+ <common:year>1948</common:year>
37
+ <common:month>02</common:month>
38
+ <common:day>02</common:day>
39
+ </common:start-date>
40
+ <common:organization>
41
+ <common:name>membership</common:name>
42
+ <common:address>
43
+ <common:city>x</common:city>
44
+ <common:country>AS</common:country>
45
+ </common:address>
46
+ </common:organization>
47
+ <common:url>http://tempuri.org</common:url>
48
+ <common:external-ids>
49
+ <common:external-id>
50
+ <common:external-id-type>agr</common:external-id-type>
51
+ <common:external-id-value>external-id-value
52
+ </common:external-id-value>
53
+ <common:external-id-url>http://orcid.org</common:external-id-url>
54
+ <common:external-id-relationship>part-of</common:external-id-relationship>
55
+ </common:external-id>
56
+ </common:external-ids>
57
+ </membership:membership-summary>
58
+ </activities:affiliation-group>
59
+ <activities:affiliation-group>
60
+ <common:last-modified-date>2001-12-31T12:00:00
61
+ </common:last-modified-date>
62
+ <common:external-ids>
63
+ <common:external-id>
64
+ <common:external-id-type>agr</common:external-id-type>
65
+ <common:external-id-value>external-id-value2</common:external-id-value>
66
+ <common:external-id-url>http://orcid.org</common:external-id-url>
67
+ <common:external-id-relationship>part-of</common:external-id-relationship>
68
+ </common:external-id>
69
+ </common:external-ids>
70
+ <membership:membership-summary put-code="1"
71
+ path="/8888-8888-8888-8888/employment/1" visibility="public">
72
+ <common:created-date>2017-01-18T13:32:45.500-06:00</common:created-date>
73
+ <common:last-modified-date>2017-01-18T13:32:45.500-06:00</common:last-modified-date>
74
+ <common:source>
75
+ <common:source-orcid>
76
+ <common:uri>https://orcid.org/8888-8888-8888-8888</common:uri>
77
+ <common:path>8888-8888-8888-8888</common:path>
78
+ <common:host>orcid.org</common:host>
79
+ </common:source-orcid>
80
+ <common:source-name>User One Credit name</common:source-name>
81
+ </common:source>
82
+ <common:department-name>membership</common:department-name>
83
+ <common:start-date>
84
+ <common:year>1948</common:year>
85
+ <common:month>02</common:month>
86
+ <common:day>02</common:day>
87
+ </common:start-date>
88
+ <common:organization>
89
+ <common:name>membership</common:name>
90
+ <common:address>
91
+ <common:city>x</common:city>
92
+ <common:country>AS</common:country>
93
+ </common:address>
94
+ </common:organization>
95
+ <common:url>http://tempuri.org</common:url>
96
+ <common:external-ids>
97
+ <common:external-id>
98
+ <common:external-id-type>agr</common:external-id-type>
99
+ <common:external-id-value>external-id-value2</common:external-id-value>
100
+ <common:external-id-url>http://orcid.org</common:external-id-url>
101
+ <common:external-id-relationship>part-of</common:external-id-relationship>
102
+ </common:external-id>
103
+ </common:external-ids>
104
+ </membership:membership-summary>
105
+ </activities:affiliation-group>
106
+ </activities:memberships>
@@ -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-3.0.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-3.0.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>https://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-3.0.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>https://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>https://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,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-3.0.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>https://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>1948</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>http://dx.doi.org/10.13039/100000001</common:disambiguated-organization-identifier>
56
+ <common:disambiguation-source>FUNDREF</common:disambiguation-source>
57
+ </common:disambiguated-organization>
58
+ </peer-review:convening-organization>
59
+ </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-3.0.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>https://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>1948</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>http://dx.doi.org/10.13039/100000001</common:disambiguated-organization-identifier>
56
+ <common:disambiguation-source>FUNDREF</common:disambiguation-source>
57
+ </common:disambiguated-organization>
58
+ </peer-review:convening-organization>
59
+ </peer-review:peer-review>
@@ -0,0 +1,76 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <activities:peer-reviews path="/8888-8888-8888-8888/peer-reviews"
3
+ xmlns:internal="http://www.orcid.org/ns/internal" xmlns:funding="http://www.orcid.org/ns/funding"
4
+ xmlns:preferences="http://www.orcid.org/ns/preferences" xmlns:address="http://www.orcid.org/ns/address"
5
+ xmlns:education="http://www.orcid.org/ns/education" xmlns:work="http://www.orcid.org/ns/work"
6
+ xmlns:deprecated="http://www.orcid.org/ns/deprecated" xmlns:other-name="http://www.orcid.org/ns/other-name"
7
+ xmlns:history="http://www.orcid.org/ns/history" xmlns:employment="http://www.orcid.org/ns/employment"
8
+ xmlns:error="http://www.orcid.org/ns/error" xmlns:common="http://www.orcid.org/ns/common"
9
+ xmlns:person="http://www.orcid.org/ns/person" xmlns:activities="http://www.orcid.org/ns/activities"
10
+ xmlns:record="http://www.orcid.org/ns/record" xmlns:researcher-url="http://www.orcid.org/ns/researcher-url"
11
+ xmlns:peer-review="http://www.orcid.org/ns/peer-review"
12
+ xmlns:personal-details="http://www.orcid.org/ns/personal-details"
13
+ xmlns:keyword="http://www.orcid.org/ns/keyword" xmlns:email="http://www.orcid.org/ns/email"
14
+ xmlns:external-identifier="http://www.orcid.org/ns/external-identifier" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15
+ xsi:schemaLocation="http://www.orcid.org/ns/activities ../activities-3.0.xsd ">
16
+ <common:last-modified-date>2017-01-17T11:55:44.542-06:00
17
+ </common:last-modified-date>
18
+ <activities:group>
19
+ <common:last-modified-date>2017-01-17T11:55:44.542-06:00
20
+ </common:last-modified-date>
21
+ <common:external-ids>
22
+ <common:external-id>
23
+ <common:external-id-type>peer-review</common:external-id-type>
24
+ <common:external-id-value>orcid-generated:011484675699116
25
+ </common:external-id-value>
26
+ </common:external-id>
27
+ </common:external-ids>
28
+ <peer-review:summary put-code="1994"
29
+ path="/8888-8888-8888-8888/peer-review/1994" visibility="public"
30
+ display-index="0">
31
+ <common:created-date>2017-01-17T11:55:44.542-06:00
32
+ </common:created-date>
33
+ <common:last-modified-date>2017-01-17T11:55:44.542-06:00
34
+ </common:last-modified-date>
35
+ <common:source>
36
+ <common:source-client-id>
37
+ <common:uri>https://orcid.org/client/APP-9999999999999902</common:uri>
38
+ <common:path>APP-9999999999999902</common:path>
39
+ <common:host>orcid.org</common:host>
40
+ </common:source-client-id>
41
+ <common:source-name>Client APP-9999999999999902 </common:source-name>
42
+ </common:source>
43
+ <common:external-ids>
44
+ <common:external-id>
45
+ <common:external-id-type>agr</common:external-id-type>
46
+ <common:external-id-value>Work Id 14846757430241484675744468
47
+ </common:external-id-value>
48
+ <common:external-id-relationship>self</common:external-id-relationship>
49
+ </common:external-id>
50
+ <common:external-id>
51
+ <common:external-id-type>doi</common:external-id-type>
52
+ <common:external-id-value>doi-ext-id1484675744468
53
+ </common:external-id-value>
54
+ <common:external-id-relationship>self</common:external-id-relationship>
55
+ </common:external-id>
56
+ </common:external-ids>
57
+ <peer-review:completion-date>
58
+ <common:year>2016</common:year>
59
+ <common:month>02</common:month>
60
+ <common:day>02</common:day>
61
+ </peer-review:completion-date>
62
+ <peer-review:review-group-id>orcid-generated:011484675699116</peer-review:review-group-id>
63
+ <peer-review:convening-organization>
64
+ <common:name>common:name</common:name>
65
+ <common:address>
66
+ <common:city>common:city</common:city>
67
+ <common:region>common:region</common:region>
68
+ <common:country>AF</common:country>
69
+ </common:address>
70
+ </peer-review:convening-organization>
71
+ <peer-review:reviewer-role>reviewer</peer-review:reviewer-role>
72
+ <peer-review:review-type>review</peer-review:review-type>
73
+ <peer-review:review-url>http://orcid.org</peer-review:review-url>
74
+ </peer-review:summary>
75
+ </activities:group>
76
+ </activities:peer-reviews>
@@ -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-3.0.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>https://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>https://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>https://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>https://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>https://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>https://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-3.0.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>https://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>https://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-3.0.xsd ">
3
+ <preferences:locale>en</preferences:locale>
4
+ </preferences:preferences>
@@ -0,0 +1,55 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <qualification:qualification put-code="0" visibility="private"
3
+ xmlns:common="http://www.orcid.org/ns/common" xmlns:qualification="http://www.orcid.org/ns/qualification"
4
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation="http://www.orcid.org/ns/qualification ../qualification-3.0.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>https://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
+ <common:department-name>department-name</common:department-name>
17
+ <common:role-title>role-title</common:role-title>
18
+ <common:start-date>
19
+ <common:year>1948</common:year>
20
+ <common:month>02</common:month>
21
+ <common:day>02</common:day>
22
+ </common:start-date>
23
+ <common:end-date>
24
+ <common:year>1948</common:year>
25
+ <common:month>02</common:month>
26
+ <common:day>02</common:day>
27
+ </common:end-date>
28
+ <common:organization>
29
+ <common:name>common:name</common:name>
30
+ <common:address>
31
+ <common:city>common:city</common:city>
32
+ <common:region>common:region</common:region>
33
+ <common:country>AF</common:country>
34
+ </common:address>
35
+ <common:disambiguated-organization>
36
+ <common:disambiguated-organization-identifier>http://dx.doi.org/10.13039/100000001</common:disambiguated-organization-identifier>
37
+ <common:disambiguation-source>FUNDREF</common:disambiguation-source>
38
+ </common:disambiguated-organization>
39
+ </common:organization>
40
+ <common:url>http://tempuri.org</common:url>
41
+ <common:external-ids>
42
+ <common:external-id>
43
+ <common:external-id-type>grant_number</common:external-id-type>
44
+ <common:external-id-value>external-identifier-value</common:external-id-value>
45
+ <common:external-id-url>http://tempuri.org</common:external-id-url>
46
+ <common:external-id-relationship>self</common:external-id-relationship>
47
+ </common:external-id>
48
+ <common:external-id>
49
+ <common:external-id-type>grant_number</common:external-id-type>
50
+ <common:external-id-value>external-identifier-value2</common:external-id-value>
51
+ <common:external-id-url>http://tempuri.org/2</common:external-id-url>
52
+ <common:external-id-relationship>self</common:external-id-relationship>
53
+ </common:external-id>
54
+ </common:external-ids>
55
+ </qualification:qualification>