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,2332 @@
1
+ {
2
+ "orcid-identifier" : {
3
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
4
+ "path" : "0000-0002-7319-2192",
5
+ "host" : "sandbox.orcid.org"
6
+ },
7
+ "preferences" : {
8
+ "locale" : "en"
9
+ },
10
+ "history" : {
11
+ "creation-method" : "MEMBER_REFERRED",
12
+ "completion-date" : null,
13
+ "submission-date" : {
14
+ "value" : 1540896558250
15
+ },
16
+ "last-modified-date" : {
17
+ "value" : 1559917016886
18
+ },
19
+ "claimed" : true,
20
+ "source" : null,
21
+ "deactivation-date" : null,
22
+ "verified-email" : true,
23
+ "verified-primary-email" : true
24
+ },
25
+ "person" : {
26
+ "last-modified-date" : {
27
+ "value" : 1559916523957
28
+ },
29
+ "name" : {
30
+ "created-date" : {
31
+ "value" : 1540896558250
32
+ },
33
+ "last-modified-date" : {
34
+ "value" : 1540896558538
35
+ },
36
+ "given-names" : {
37
+ "value" : "Three"
38
+ },
39
+ "family-name" : {
40
+ "value" : "releasecandidate1"
41
+ },
42
+ "credit-name" : null,
43
+ "source" : null,
44
+ "visibility" : "public",
45
+ "path" : "0000-0002-7319-2192"
46
+ },
47
+ "other-names" : {
48
+ "last-modified-date" : {
49
+ "value" : 1559916523957
50
+ },
51
+ "other-name" : [ {
52
+ "created-date" : {
53
+ "value" : 1540898872166
54
+ },
55
+ "last-modified-date" : {
56
+ "value" : 1542988377112
57
+ },
58
+ "source" : {
59
+ "source-orcid" : null,
60
+ "source-client-id" : {
61
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
62
+ "path" : "APP-OQYKBIN9CXD9U3SH",
63
+ "host" : "sandbox.orcid.org"
64
+ },
65
+ "source-name" : {
66
+ "value" : "Demo Org Sandbox "
67
+ },
68
+ "assertion-origin-orcid" : null,
69
+ "assertion-origin-client-id" : null,
70
+ "assertion-origin-name" : null
71
+ },
72
+ "content" : "Other Name",
73
+ "visibility" : "public",
74
+ "path" : "/0000-0002-7319-2192/other-names/4923",
75
+ "put-code" : 4923,
76
+ "display-index" : 3
77
+ }, {
78
+ "created-date" : {
79
+ "value" : 1542988361759
80
+ },
81
+ "last-modified-date" : {
82
+ "value" : 1542988377117
83
+ },
84
+ "source" : {
85
+ "source-orcid" : {
86
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
87
+ "path" : "0000-0002-7319-2192",
88
+ "host" : "sandbox.orcid.org"
89
+ },
90
+ "source-client-id" : null,
91
+ "source-name" : {
92
+ "value" : "Three releasecandidate1"
93
+ },
94
+ "assertion-origin-orcid" : null,
95
+ "assertion-origin-client-id" : null,
96
+ "assertion-origin-name" : null
97
+ },
98
+ "content" : "{}",
99
+ "visibility" : "public",
100
+ "path" : "/0000-0002-7319-2192/other-names/5028",
101
+ "put-code" : 5028,
102
+ "display-index" : 2
103
+ }, {
104
+ "created-date" : {
105
+ "value" : 1542988377107
106
+ },
107
+ "last-modified-date" : {
108
+ "value" : 1542988377107
109
+ },
110
+ "source" : {
111
+ "source-orcid" : {
112
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
113
+ "path" : "0000-0002-7319-2192",
114
+ "host" : "sandbox.orcid.org"
115
+ },
116
+ "source-client-id" : null,
117
+ "source-name" : {
118
+ "value" : "Three releasecandidate1"
119
+ },
120
+ "assertion-origin-orcid" : null,
121
+ "assertion-origin-client-id" : null,
122
+ "assertion-origin-name" : null
123
+ },
124
+ "content" : "{yo}",
125
+ "visibility" : "public",
126
+ "path" : "/0000-0002-7319-2192/other-names/5029",
127
+ "put-code" : 5029,
128
+ "display-index" : 1
129
+ }, {
130
+ "created-date" : {
131
+ "value" : 1557237931670
132
+ },
133
+ "last-modified-date" : {
134
+ "value" : 1557237931671
135
+ },
136
+ "source" : {
137
+ "source-orcid" : null,
138
+ "source-client-id" : {
139
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
140
+ "path" : "APP-OQYKBIN9CXD9U3SH",
141
+ "host" : "sandbox.orcid.org"
142
+ },
143
+ "source-name" : {
144
+ "value" : "Demo Org Sandbox "
145
+ },
146
+ "assertion-origin-orcid" : null,
147
+ "assertion-origin-client-id" : null,
148
+ "assertion-origin-name" : null
149
+ },
150
+ "content" : "dreamofaredbird",
151
+ "visibility" : "public",
152
+ "path" : "/0000-0002-7319-2192/other-names/5654",
153
+ "put-code" : 5654,
154
+ "display-index" : 0
155
+ }, {
156
+ "created-date" : {
157
+ "value" : 1559916523953
158
+ },
159
+ "last-modified-date" : {
160
+ "value" : 1559916523957
161
+ },
162
+ "source" : {
163
+ "source-orcid" : null,
164
+ "source-client-id" : {
165
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
166
+ "path" : "APP-OQYKBIN9CXD9U3SH",
167
+ "host" : "sandbox.orcid.org"
168
+ },
169
+ "source-name" : {
170
+ "value" : "Demo Org Sandbox "
171
+ },
172
+ "assertion-origin-orcid" : {
173
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
174
+ "path" : "0000-0002-7319-2192",
175
+ "host" : "sandbox.orcid.org"
176
+ },
177
+ "assertion-origin-client-id" : null,
178
+ "assertion-origin-name" : {
179
+ "value" : "Three releasecandidate1"
180
+ }
181
+ },
182
+ "content" : "Other Name",
183
+ "visibility" : "public",
184
+ "path" : "/0000-0002-7319-2192/other-names/5813",
185
+ "put-code" : 5813,
186
+ "display-index" : 0
187
+ } ],
188
+ "path" : "/0000-0002-7319-2192/other-names"
189
+ },
190
+ "biography" : null,
191
+ "researcher-urls" : {
192
+ "last-modified-date" : {
193
+ "value" : 1542975661796
194
+ },
195
+ "researcher-url" : [ {
196
+ "created-date" : {
197
+ "value" : 1540899670751
198
+ },
199
+ "last-modified-date" : {
200
+ "value" : 1542975661796
201
+ },
202
+ "source" : {
203
+ "source-orcid" : null,
204
+ "source-client-id" : {
205
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
206
+ "path" : "APP-OQYKBIN9CXD9U3SH",
207
+ "host" : "sandbox.orcid.org"
208
+ },
209
+ "source-name" : {
210
+ "value" : "Demo Org Sandbox "
211
+ },
212
+ "assertion-origin-orcid" : null,
213
+ "assertion-origin-client-id" : null,
214
+ "assertion-origin-name" : null
215
+ },
216
+ "url-name" : "Site # 1",
217
+ "url" : {
218
+ "value" : "https://site1.com/"
219
+ },
220
+ "visibility" : "public",
221
+ "path" : "/0000-0002-7319-2192/researcher-urls/9401",
222
+ "put-code" : 9401,
223
+ "display-index" : 2
224
+ }, {
225
+ "created-date" : {
226
+ "value" : 1542975661786
227
+ },
228
+ "last-modified-date" : {
229
+ "value" : 1542975661786
230
+ },
231
+ "source" : {
232
+ "source-orcid" : {
233
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
234
+ "path" : "0000-0002-7319-2192",
235
+ "host" : "sandbox.orcid.org"
236
+ },
237
+ "source-client-id" : null,
238
+ "source-name" : {
239
+ "value" : "Three releasecandidate1"
240
+ },
241
+ "assertion-origin-orcid" : null,
242
+ "assertion-origin-client-id" : null,
243
+ "assertion-origin-name" : null
244
+ },
245
+ "url-name" : "{{}}{}",
246
+ "url" : {
247
+ "value" : "http://www.fjksbl.com"
248
+ },
249
+ "visibility" : "public",
250
+ "path" : "/0000-0002-7319-2192/researcher-urls/9519",
251
+ "put-code" : 9519,
252
+ "display-index" : 1
253
+ } ],
254
+ "path" : "/0000-0002-7319-2192/researcher-urls"
255
+ },
256
+ "emails" : {
257
+ "last-modified-date" : null,
258
+ "email" : [ ],
259
+ "path" : "/0000-0002-7319-2192/email"
260
+ },
261
+ "addresses" : {
262
+ "last-modified-date" : {
263
+ "value" : 1559916279502
264
+ },
265
+ "address" : [ {
266
+ "created-date" : {
267
+ "value" : 1540897314769
268
+ },
269
+ "last-modified-date" : {
270
+ "value" : 1540897314770
271
+ },
272
+ "source" : {
273
+ "source-orcid" : null,
274
+ "source-client-id" : {
275
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
276
+ "path" : "APP-OQYKBIN9CXD9U3SH",
277
+ "host" : "sandbox.orcid.org"
278
+ },
279
+ "source-name" : {
280
+ "value" : "Demo Org Sandbox "
281
+ },
282
+ "assertion-origin-orcid" : null,
283
+ "assertion-origin-client-id" : null,
284
+ "assertion-origin-name" : null
285
+ },
286
+ "country" : {
287
+ "value" : "US"
288
+ },
289
+ "visibility" : "public",
290
+ "path" : "/0000-0002-7319-2192/address/2621",
291
+ "put-code" : 2621,
292
+ "display-index" : 0
293
+ }, {
294
+ "created-date" : {
295
+ "value" : 1545061180810
296
+ },
297
+ "last-modified-date" : {
298
+ "value" : 1545061180812
299
+ },
300
+ "source" : {
301
+ "source-orcid" : null,
302
+ "source-client-id" : {
303
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
304
+ "path" : "APP-OQYKBIN9CXD9U3SH",
305
+ "host" : "sandbox.orcid.org"
306
+ },
307
+ "source-name" : {
308
+ "value" : "Demo Org Sandbox "
309
+ },
310
+ "assertion-origin-orcid" : null,
311
+ "assertion-origin-client-id" : null,
312
+ "assertion-origin-name" : null
313
+ },
314
+ "country" : {
315
+ "value" : "US"
316
+ },
317
+ "visibility" : "public",
318
+ "path" : "/0000-0002-7319-2192/address/2813",
319
+ "put-code" : 2813,
320
+ "display-index" : 0
321
+ }, {
322
+ "created-date" : {
323
+ "value" : 1559916278570
324
+ },
325
+ "last-modified-date" : {
326
+ "value" : 1559916279502
327
+ },
328
+ "source" : {
329
+ "source-orcid" : null,
330
+ "source-client-id" : {
331
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
332
+ "path" : "APP-OQYKBIN9CXD9U3SH",
333
+ "host" : "sandbox.orcid.org"
334
+ },
335
+ "source-name" : {
336
+ "value" : "Demo Org Sandbox "
337
+ },
338
+ "assertion-origin-orcid" : {
339
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
340
+ "path" : "0000-0002-7319-2192",
341
+ "host" : "sandbox.orcid.org"
342
+ },
343
+ "assertion-origin-client-id" : null,
344
+ "assertion-origin-name" : {
345
+ "value" : "Three releasecandidate1"
346
+ }
347
+ },
348
+ "country" : {
349
+ "value" : "US"
350
+ },
351
+ "visibility" : "public",
352
+ "path" : "/0000-0002-7319-2192/address/3527",
353
+ "put-code" : 3527,
354
+ "display-index" : 0
355
+ } ],
356
+ "path" : "/0000-0002-7319-2192/address"
357
+ },
358
+ "keywords" : {
359
+ "last-modified-date" : {
360
+ "value" : 1559916491061
361
+ },
362
+ "keyword" : [ {
363
+ "created-date" : {
364
+ "value" : 1542988395528
365
+ },
366
+ "last-modified-date" : {
367
+ "value" : 1542988395528
368
+ },
369
+ "source" : {
370
+ "source-orcid" : {
371
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
372
+ "path" : "0000-0002-7319-2192",
373
+ "host" : "sandbox.orcid.org"
374
+ },
375
+ "source-client-id" : null,
376
+ "source-name" : {
377
+ "value" : "Three releasecandidate1"
378
+ },
379
+ "assertion-origin-orcid" : null,
380
+ "assertion-origin-client-id" : null,
381
+ "assertion-origin-name" : null
382
+ },
383
+ "content" : "{{{}}}}{}{{}}}{{{{}}{}{}{}{}{}{}{",
384
+ "visibility" : "public",
385
+ "path" : "/0000-0002-7319-2192/keywords/4249",
386
+ "put-code" : 4249,
387
+ "display-index" : 1
388
+ }, {
389
+ "created-date" : {
390
+ "value" : 1559916491059
391
+ },
392
+ "last-modified-date" : {
393
+ "value" : 1559916491061
394
+ },
395
+ "source" : {
396
+ "source-orcid" : null,
397
+ "source-client-id" : {
398
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
399
+ "path" : "APP-OQYKBIN9CXD9U3SH",
400
+ "host" : "sandbox.orcid.org"
401
+ },
402
+ "source-name" : {
403
+ "value" : "Demo Org Sandbox "
404
+ },
405
+ "assertion-origin-orcid" : {
406
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
407
+ "path" : "0000-0002-7319-2192",
408
+ "host" : "sandbox.orcid.org"
409
+ },
410
+ "assertion-origin-client-id" : null,
411
+ "assertion-origin-name" : {
412
+ "value" : "Three releasecandidate1"
413
+ }
414
+ },
415
+ "content" : "keyword1",
416
+ "visibility" : "public",
417
+ "path" : "/0000-0002-7319-2192/keywords/5097",
418
+ "put-code" : 5097,
419
+ "display-index" : 0
420
+ } ],
421
+ "path" : "/0000-0002-7319-2192/keywords"
422
+ },
423
+ "external-identifiers" : {
424
+ "last-modified-date" : {
425
+ "value" : 1559916460587
426
+ },
427
+ "external-identifier" : [ {
428
+ "created-date" : {
429
+ "value" : 1559916460581
430
+ },
431
+ "last-modified-date" : {
432
+ "value" : 1559916460587
433
+ },
434
+ "source" : {
435
+ "source-orcid" : null,
436
+ "source-client-id" : {
437
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
438
+ "path" : "APP-OQYKBIN9CXD9U3SH",
439
+ "host" : "sandbox.orcid.org"
440
+ },
441
+ "source-name" : {
442
+ "value" : "Demo Org Sandbox "
443
+ },
444
+ "assertion-origin-orcid" : {
445
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
446
+ "path" : "0000-0002-7319-2192",
447
+ "host" : "sandbox.orcid.org"
448
+ },
449
+ "assertion-origin-client-id" : null,
450
+ "assertion-origin-name" : {
451
+ "value" : "Three releasecandidate1"
452
+ }
453
+ },
454
+ "external-id-type" : "My ID System",
455
+ "external-id-value" : "A-0003",
456
+ "external-id-url" : {
457
+ "value" : "https://myid.com/A-0003"
458
+ },
459
+ "external-id-relationship" : "self",
460
+ "visibility" : "public",
461
+ "path" : "/0000-0002-7319-2192/external-identifiers/3995",
462
+ "put-code" : 3995,
463
+ "display-index" : 0
464
+ } ],
465
+ "path" : "/0000-0002-7319-2192/external-identifiers"
466
+ },
467
+ "path" : "/0000-0002-7319-2192/person"
468
+ },
469
+ "activities-summary" : {
470
+ "last-modified-date" : {
471
+ "value" : 1559917017189
472
+ },
473
+ "distinctions" : {
474
+ "last-modified-date" : {
475
+ "value" : 1559916331151
476
+ },
477
+ "affiliation-group" : [ {
478
+ "last-modified-date" : {
479
+ "value" : 1559916331151
480
+ },
481
+ "external-ids" : {
482
+ "external-id" : [ {
483
+ "external-id-type" : "grant_number",
484
+ "external-id-value" : "external-identifier-value2",
485
+ "external-id-normalized" : {
486
+ "value" : "external-identifier-value2",
487
+ "transient" : true
488
+ },
489
+ "external-id-normalized-error" : null,
490
+ "external-id-url" : {
491
+ "value" : "http://tempuri.org/2"
492
+ },
493
+ "external-id-relationship" : "self"
494
+ }, {
495
+ "external-id-type" : "grant_number",
496
+ "external-id-value" : "external-identifier-value",
497
+ "external-id-normalized" : {
498
+ "value" : "external-identifier-value",
499
+ "transient" : true
500
+ },
501
+ "external-id-normalized-error" : null,
502
+ "external-id-url" : {
503
+ "value" : "http://tempuri.org"
504
+ },
505
+ "external-id-relationship" : "self"
506
+ } ]
507
+ },
508
+ "summaries" : [ {
509
+ "distinction-summary" : {
510
+ "created-date" : {
511
+ "value" : 1559916331151
512
+ },
513
+ "last-modified-date" : {
514
+ "value" : 1559916331151
515
+ },
516
+ "source" : {
517
+ "source-orcid" : null,
518
+ "source-client-id" : {
519
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
520
+ "path" : "APP-OQYKBIN9CXD9U3SH",
521
+ "host" : "sandbox.orcid.org"
522
+ },
523
+ "source-name" : {
524
+ "value" : "Demo Org Sandbox "
525
+ },
526
+ "assertion-origin-orcid" : {
527
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
528
+ "path" : "0000-0002-7319-2192",
529
+ "host" : "sandbox.orcid.org"
530
+ },
531
+ "assertion-origin-client-id" : null,
532
+ "assertion-origin-name" : {
533
+ "value" : "Three releasecandidate1"
534
+ }
535
+ },
536
+ "put-code" : 9264,
537
+ "department-name" : "department-name",
538
+ "role-title" : "role-title",
539
+ "start-date" : {
540
+ "year" : {
541
+ "value" : "1948"
542
+ },
543
+ "month" : {
544
+ "value" : "02"
545
+ },
546
+ "day" : {
547
+ "value" : "02"
548
+ }
549
+ },
550
+ "end-date" : {
551
+ "year" : {
552
+ "value" : "1948"
553
+ },
554
+ "month" : {
555
+ "value" : "02"
556
+ },
557
+ "day" : {
558
+ "value" : "02"
559
+ }
560
+ },
561
+ "organization" : {
562
+ "name" : "common:name",
563
+ "address" : {
564
+ "city" : "common:city",
565
+ "region" : "common:region",
566
+ "country" : "AF"
567
+ },
568
+ "disambiguated-organization" : {
569
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
570
+ "disambiguation-source" : "FUNDREF"
571
+ }
572
+ },
573
+ "url" : {
574
+ "value" : "http://tempuri.org"
575
+ },
576
+ "external-ids" : {
577
+ "external-id" : [ {
578
+ "external-id-type" : "grant_number",
579
+ "external-id-value" : "external-identifier-value",
580
+ "external-id-normalized" : {
581
+ "value" : "external-identifier-value",
582
+ "transient" : true
583
+ },
584
+ "external-id-normalized-error" : null,
585
+ "external-id-url" : {
586
+ "value" : "http://tempuri.org"
587
+ },
588
+ "external-id-relationship" : "self"
589
+ }, {
590
+ "external-id-type" : "grant_number",
591
+ "external-id-value" : "external-identifier-value2",
592
+ "external-id-normalized" : {
593
+ "value" : "external-identifier-value2",
594
+ "transient" : true
595
+ },
596
+ "external-id-normalized-error" : null,
597
+ "external-id-url" : {
598
+ "value" : "http://tempuri.org/2"
599
+ },
600
+ "external-id-relationship" : "self"
601
+ } ]
602
+ },
603
+ "display-index" : "0",
604
+ "visibility" : "public",
605
+ "path" : "/0000-0002-7319-2192/distinction/9264"
606
+ }
607
+ } ]
608
+ } ],
609
+ "path" : "/0000-0002-7319-2192/distinctions"
610
+ },
611
+ "educations" : {
612
+ "last-modified-date" : {
613
+ "value" : 1559916343689
614
+ },
615
+ "affiliation-group" : [ {
616
+ "last-modified-date" : {
617
+ "value" : 1540897446513
618
+ },
619
+ "external-ids" : {
620
+ "external-id" : [ {
621
+ "external-id-type" : "grant_number",
622
+ "external-id-value" : "external-identifier-value2",
623
+ "external-id-normalized" : {
624
+ "value" : "external-identifier-value2",
625
+ "transient" : true
626
+ },
627
+ "external-id-normalized-error" : null,
628
+ "external-id-url" : {
629
+ "value" : "http://tempuri.org/2"
630
+ },
631
+ "external-id-relationship" : "self"
632
+ }, {
633
+ "external-id-type" : "grant_number",
634
+ "external-id-value" : "external-identifier-value",
635
+ "external-id-normalized" : {
636
+ "value" : "external-identifier-value",
637
+ "transient" : true
638
+ },
639
+ "external-id-normalized-error" : null,
640
+ "external-id-url" : {
641
+ "value" : "http://tempuri.org"
642
+ },
643
+ "external-id-relationship" : "self"
644
+ } ]
645
+ },
646
+ "summaries" : [ {
647
+ "education-summary" : {
648
+ "created-date" : {
649
+ "value" : 1540897446513
650
+ },
651
+ "last-modified-date" : {
652
+ "value" : 1540897446513
653
+ },
654
+ "source" : {
655
+ "source-orcid" : null,
656
+ "source-client-id" : {
657
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
658
+ "path" : "APP-OQYKBIN9CXD9U3SH",
659
+ "host" : "sandbox.orcid.org"
660
+ },
661
+ "source-name" : {
662
+ "value" : "Demo Org Sandbox "
663
+ },
664
+ "assertion-origin-orcid" : null,
665
+ "assertion-origin-client-id" : null,
666
+ "assertion-origin-name" : null
667
+ },
668
+ "put-code" : 6455,
669
+ "department-name" : "department-name",
670
+ "role-title" : "role-title",
671
+ "start-date" : {
672
+ "year" : {
673
+ "value" : "1948"
674
+ },
675
+ "month" : {
676
+ "value" : "02"
677
+ },
678
+ "day" : {
679
+ "value" : "02"
680
+ }
681
+ },
682
+ "end-date" : {
683
+ "year" : {
684
+ "value" : "1948"
685
+ },
686
+ "month" : {
687
+ "value" : "02"
688
+ },
689
+ "day" : {
690
+ "value" : "02"
691
+ }
692
+ },
693
+ "organization" : {
694
+ "name" : "common:name",
695
+ "address" : {
696
+ "city" : "common:city",
697
+ "region" : "common:region",
698
+ "country" : "AF"
699
+ },
700
+ "disambiguated-organization" : {
701
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
702
+ "disambiguation-source" : "FUNDREF"
703
+ }
704
+ },
705
+ "url" : {
706
+ "value" : "http://tempuri.org"
707
+ },
708
+ "external-ids" : {
709
+ "external-id" : [ {
710
+ "external-id-type" : "grant_number",
711
+ "external-id-value" : "external-identifier-value",
712
+ "external-id-normalized" : {
713
+ "value" : "external-identifier-value",
714
+ "transient" : true
715
+ },
716
+ "external-id-normalized-error" : null,
717
+ "external-id-url" : {
718
+ "value" : "http://tempuri.org"
719
+ },
720
+ "external-id-relationship" : "self"
721
+ }, {
722
+ "external-id-type" : "grant_number",
723
+ "external-id-value" : "external-identifier-value2",
724
+ "external-id-normalized" : {
725
+ "value" : "external-identifier-value2",
726
+ "transient" : true
727
+ },
728
+ "external-id-normalized-error" : null,
729
+ "external-id-url" : {
730
+ "value" : "http://tempuri.org/2"
731
+ },
732
+ "external-id-relationship" : "self"
733
+ } ]
734
+ },
735
+ "display-index" : "0",
736
+ "visibility" : "public",
737
+ "path" : "/0000-0002-7319-2192/education/6455"
738
+ }
739
+ } ]
740
+ }, {
741
+ "last-modified-date" : {
742
+ "value" : 1559916343689
743
+ },
744
+ "external-ids" : {
745
+ "external-id" : [ ]
746
+ },
747
+ "summaries" : [ {
748
+ "education-summary" : {
749
+ "created-date" : {
750
+ "value" : 1559916343689
751
+ },
752
+ "last-modified-date" : {
753
+ "value" : 1559916343689
754
+ },
755
+ "source" : {
756
+ "source-orcid" : null,
757
+ "source-client-id" : {
758
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
759
+ "path" : "APP-OQYKBIN9CXD9U3SH",
760
+ "host" : "sandbox.orcid.org"
761
+ },
762
+ "source-name" : {
763
+ "value" : "Demo Org Sandbox "
764
+ },
765
+ "assertion-origin-orcid" : {
766
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
767
+ "path" : "0000-0002-7319-2192",
768
+ "host" : "sandbox.orcid.org"
769
+ },
770
+ "assertion-origin-client-id" : null,
771
+ "assertion-origin-name" : {
772
+ "value" : "Three releasecandidate1"
773
+ }
774
+ },
775
+ "put-code" : 9265,
776
+ "department-name" : "!GAllows!",
777
+ "role-title" : "role-title",
778
+ "start-date" : {
779
+ "year" : {
780
+ "value" : "1948"
781
+ },
782
+ "month" : {
783
+ "value" : "02"
784
+ },
785
+ "day" : {
786
+ "value" : "02"
787
+ }
788
+ },
789
+ "end-date" : {
790
+ "year" : {
791
+ "value" : "1948"
792
+ },
793
+ "month" : {
794
+ "value" : "02"
795
+ },
796
+ "day" : {
797
+ "value" : "02"
798
+ }
799
+ },
800
+ "organization" : {
801
+ "name" : "common:name",
802
+ "address" : {
803
+ "city" : "common:city",
804
+ "region" : "common:region",
805
+ "country" : "AF"
806
+ },
807
+ "disambiguated-organization" : {
808
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000003",
809
+ "disambiguation-source" : "FUNDREF"
810
+ }
811
+ },
812
+ "url" : {
813
+ "value" : "http://tempuri.org"
814
+ },
815
+ "external-ids" : null,
816
+ "display-index" : "0",
817
+ "visibility" : "public",
818
+ "path" : "/0000-0002-7319-2192/education/9265"
819
+ }
820
+ } ]
821
+ }, {
822
+ "last-modified-date" : {
823
+ "value" : 1557232664523
824
+ },
825
+ "external-ids" : {
826
+ "external-id" : [ ]
827
+ },
828
+ "summaries" : [ {
829
+ "education-summary" : {
830
+ "created-date" : {
831
+ "value" : 1557232664523
832
+ },
833
+ "last-modified-date" : {
834
+ "value" : 1557232664523
835
+ },
836
+ "source" : {
837
+ "source-orcid" : null,
838
+ "source-client-id" : {
839
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
840
+ "path" : "APP-OQYKBIN9CXD9U3SH",
841
+ "host" : "sandbox.orcid.org"
842
+ },
843
+ "source-name" : {
844
+ "value" : "Demo Org Sandbox "
845
+ },
846
+ "assertion-origin-orcid" : null,
847
+ "assertion-origin-client-id" : null,
848
+ "assertion-origin-name" : null
849
+ },
850
+ "put-code" : 8718,
851
+ "department-name" : "!GAllows!",
852
+ "role-title" : "role-title",
853
+ "start-date" : {
854
+ "year" : {
855
+ "value" : "1948"
856
+ },
857
+ "month" : {
858
+ "value" : "02"
859
+ },
860
+ "day" : {
861
+ "value" : "02"
862
+ }
863
+ },
864
+ "end-date" : {
865
+ "year" : {
866
+ "value" : "1948"
867
+ },
868
+ "month" : {
869
+ "value" : "02"
870
+ },
871
+ "day" : {
872
+ "value" : "02"
873
+ }
874
+ },
875
+ "organization" : {
876
+ "name" : "common:name",
877
+ "address" : {
878
+ "city" : "common:city",
879
+ "region" : "common:region",
880
+ "country" : "AF"
881
+ },
882
+ "disambiguated-organization" : {
883
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000003",
884
+ "disambiguation-source" : "FUNDREF"
885
+ }
886
+ },
887
+ "url" : {
888
+ "value" : "http://tempuri.org"
889
+ },
890
+ "external-ids" : null,
891
+ "display-index" : "0",
892
+ "visibility" : "public",
893
+ "path" : "/0000-0002-7319-2192/education/8718"
894
+ }
895
+ } ]
896
+ } ],
897
+ "path" : "/0000-0002-7319-2192/educations"
898
+ },
899
+ "employments" : {
900
+ "last-modified-date" : {
901
+ "value" : 1559916358839
902
+ },
903
+ "affiliation-group" : [ {
904
+ "last-modified-date" : {
905
+ "value" : 1559916358839
906
+ },
907
+ "external-ids" : {
908
+ "external-id" : [ {
909
+ "external-id-type" : "grant_number",
910
+ "external-id-value" : "external-identifier-value2",
911
+ "external-id-normalized" : {
912
+ "value" : "external-identifier-value2",
913
+ "transient" : true
914
+ },
915
+ "external-id-normalized-error" : null,
916
+ "external-id-url" : {
917
+ "value" : "http://tempuri.org/2"
918
+ },
919
+ "external-id-relationship" : "self"
920
+ }, {
921
+ "external-id-type" : "grant_number",
922
+ "external-id-value" : "external-identifier-value",
923
+ "external-id-normalized" : {
924
+ "value" : "external-identifier-value",
925
+ "transient" : true
926
+ },
927
+ "external-id-normalized-error" : null,
928
+ "external-id-url" : {
929
+ "value" : "http://tempuri.org"
930
+ },
931
+ "external-id-relationship" : "self"
932
+ } ]
933
+ },
934
+ "summaries" : [ {
935
+ "employment-summary" : {
936
+ "created-date" : {
937
+ "value" : 1559916358839
938
+ },
939
+ "last-modified-date" : {
940
+ "value" : 1559916358839
941
+ },
942
+ "source" : {
943
+ "source-orcid" : null,
944
+ "source-client-id" : {
945
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
946
+ "path" : "APP-OQYKBIN9CXD9U3SH",
947
+ "host" : "sandbox.orcid.org"
948
+ },
949
+ "source-name" : {
950
+ "value" : "Demo Org Sandbox "
951
+ },
952
+ "assertion-origin-orcid" : {
953
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
954
+ "path" : "0000-0002-7319-2192",
955
+ "host" : "sandbox.orcid.org"
956
+ },
957
+ "assertion-origin-client-id" : null,
958
+ "assertion-origin-name" : {
959
+ "value" : "Three releasecandidate1"
960
+ }
961
+ },
962
+ "put-code" : 9266,
963
+ "department-name" : "department-name",
964
+ "role-title" : "role-title",
965
+ "start-date" : {
966
+ "year" : {
967
+ "value" : "1948"
968
+ },
969
+ "month" : {
970
+ "value" : "02"
971
+ },
972
+ "day" : {
973
+ "value" : "02"
974
+ }
975
+ },
976
+ "end-date" : {
977
+ "year" : {
978
+ "value" : "1948"
979
+ },
980
+ "month" : {
981
+ "value" : "02"
982
+ },
983
+ "day" : {
984
+ "value" : "02"
985
+ }
986
+ },
987
+ "organization" : {
988
+ "name" : "common:name",
989
+ "address" : {
990
+ "city" : "common:city",
991
+ "region" : "common:region",
992
+ "country" : "AF"
993
+ },
994
+ "disambiguated-organization" : {
995
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
996
+ "disambiguation-source" : "FUNDREF"
997
+ }
998
+ },
999
+ "url" : {
1000
+ "value" : "http://tempuri.org"
1001
+ },
1002
+ "external-ids" : {
1003
+ "external-id" : [ {
1004
+ "external-id-type" : "grant_number",
1005
+ "external-id-value" : "external-identifier-value",
1006
+ "external-id-normalized" : {
1007
+ "value" : "external-identifier-value",
1008
+ "transient" : true
1009
+ },
1010
+ "external-id-normalized-error" : null,
1011
+ "external-id-url" : {
1012
+ "value" : "http://tempuri.org"
1013
+ },
1014
+ "external-id-relationship" : "self"
1015
+ }, {
1016
+ "external-id-type" : "grant_number",
1017
+ "external-id-value" : "external-identifier-value2",
1018
+ "external-id-normalized" : {
1019
+ "value" : "external-identifier-value2",
1020
+ "transient" : true
1021
+ },
1022
+ "external-id-normalized-error" : null,
1023
+ "external-id-url" : {
1024
+ "value" : "http://tempuri.org/2"
1025
+ },
1026
+ "external-id-relationship" : "self"
1027
+ } ]
1028
+ },
1029
+ "display-index" : "0",
1030
+ "visibility" : "public",
1031
+ "path" : "/0000-0002-7319-2192/employment/9266"
1032
+ }
1033
+ } ]
1034
+ } ],
1035
+ "path" : "/0000-0002-7319-2192/employments"
1036
+ },
1037
+ "fundings" : {
1038
+ "last-modified-date" : {
1039
+ "value" : 1559916470233
1040
+ },
1041
+ "group" : [ {
1042
+ "last-modified-date" : {
1043
+ "value" : 1559916470233
1044
+ },
1045
+ "external-ids" : {
1046
+ "external-id" : [ {
1047
+ "external-id-type" : "grant_number",
1048
+ "external-id-value" : "1234",
1049
+ "external-id-normalized" : null,
1050
+ "external-id-normalized-error" : null,
1051
+ "external-id-url" : {
1052
+ "value" : "http://tempuri.org/12345"
1053
+ },
1054
+ "external-id-relationship" : "self"
1055
+ } ]
1056
+ },
1057
+ "funding-summary" : [ {
1058
+ "created-date" : {
1059
+ "value" : 1544804506866
1060
+ },
1061
+ "last-modified-date" : {
1062
+ "value" : 1544804506866
1063
+ },
1064
+ "source" : {
1065
+ "source-orcid" : {
1066
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
1067
+ "path" : "0000-0002-7319-2192",
1068
+ "host" : "sandbox.orcid.org"
1069
+ },
1070
+ "source-client-id" : null,
1071
+ "source-name" : {
1072
+ "value" : "Three releasecandidate1"
1073
+ },
1074
+ "assertion-origin-orcid" : null,
1075
+ "assertion-origin-client-id" : null,
1076
+ "assertion-origin-name" : null
1077
+ },
1078
+ "title" : {
1079
+ "title" : {
1080
+ "value" : "Grant title"
1081
+ },
1082
+ "translated-title" : {
1083
+ "value" : "Translated title",
1084
+ "language-code" : "en"
1085
+ }
1086
+ },
1087
+ "external-ids" : {
1088
+ "external-id" : [ {
1089
+ "external-id-type" : "grant_number",
1090
+ "external-id-value" : "1234",
1091
+ "external-id-normalized" : null,
1092
+ "external-id-normalized-error" : null,
1093
+ "external-id-url" : {
1094
+ "value" : "http://tempuri.org/12345"
1095
+ },
1096
+ "external-id-relationship" : "self"
1097
+ } ]
1098
+ },
1099
+ "url" : {
1100
+ "value" : "https://alt-url.org"
1101
+ },
1102
+ "type" : "grant",
1103
+ "start-date" : {
1104
+ "year" : {
1105
+ "value" : "2000"
1106
+ },
1107
+ "month" : {
1108
+ "value" : "02"
1109
+ },
1110
+ "day" : {
1111
+ "value" : "02"
1112
+ }
1113
+ },
1114
+ "end-date" : {
1115
+ "year" : {
1116
+ "value" : "2020"
1117
+ },
1118
+ "month" : {
1119
+ "value" : "02"
1120
+ },
1121
+ "day" : {
1122
+ "value" : "02"
1123
+ }
1124
+ },
1125
+ "organization" : {
1126
+ "name" : "Wellcome Trust",
1127
+ "address" : {
1128
+ "city" : "London",
1129
+ "region" : null,
1130
+ "country" : "GB"
1131
+ },
1132
+ "disambiguated-organization" : {
1133
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
1134
+ "disambiguation-source" : "FUNDREF"
1135
+ }
1136
+ },
1137
+ "visibility" : "public",
1138
+ "put-code" : 5132,
1139
+ "path" : "/0000-0002-7319-2192/funding/5132",
1140
+ "display-index" : "1"
1141
+ }, {
1142
+ "created-date" : {
1143
+ "value" : 1559916470233
1144
+ },
1145
+ "last-modified-date" : {
1146
+ "value" : 1559916470233
1147
+ },
1148
+ "source" : {
1149
+ "source-orcid" : null,
1150
+ "source-client-id" : {
1151
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
1152
+ "path" : "APP-OQYKBIN9CXD9U3SH",
1153
+ "host" : "sandbox.orcid.org"
1154
+ },
1155
+ "source-name" : {
1156
+ "value" : "Demo Org Sandbox "
1157
+ },
1158
+ "assertion-origin-orcid" : {
1159
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
1160
+ "path" : "0000-0002-7319-2192",
1161
+ "host" : "sandbox.orcid.org"
1162
+ },
1163
+ "assertion-origin-client-id" : null,
1164
+ "assertion-origin-name" : {
1165
+ "value" : "Three releasecandidate1"
1166
+ }
1167
+ },
1168
+ "title" : {
1169
+ "title" : {
1170
+ "value" : "Grant title"
1171
+ },
1172
+ "translated-title" : {
1173
+ "value" : "Translated title",
1174
+ "language-code" : "en"
1175
+ }
1176
+ },
1177
+ "external-ids" : {
1178
+ "external-id" : [ {
1179
+ "external-id-type" : "grant_number",
1180
+ "external-id-value" : "1234",
1181
+ "external-id-normalized" : null,
1182
+ "external-id-normalized-error" : null,
1183
+ "external-id-url" : {
1184
+ "value" : "http://tempuri.org/12345"
1185
+ },
1186
+ "external-id-relationship" : "self"
1187
+ } ]
1188
+ },
1189
+ "url" : {
1190
+ "value" : "https://alt-url.org"
1191
+ },
1192
+ "type" : "grant",
1193
+ "start-date" : {
1194
+ "year" : {
1195
+ "value" : "2000"
1196
+ },
1197
+ "month" : {
1198
+ "value" : "02"
1199
+ },
1200
+ "day" : {
1201
+ "value" : "02"
1202
+ }
1203
+ },
1204
+ "end-date" : {
1205
+ "year" : {
1206
+ "value" : "2020"
1207
+ },
1208
+ "month" : {
1209
+ "value" : "02"
1210
+ },
1211
+ "day" : {
1212
+ "value" : "02"
1213
+ }
1214
+ },
1215
+ "organization" : {
1216
+ "name" : "Wellcome Trust",
1217
+ "address" : {
1218
+ "city" : "London",
1219
+ "region" : null,
1220
+ "country" : "GB"
1221
+ },
1222
+ "disambiguated-organization" : {
1223
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
1224
+ "disambiguation-source" : "FUNDREF"
1225
+ }
1226
+ },
1227
+ "visibility" : "public",
1228
+ "put-code" : 5909,
1229
+ "path" : "/0000-0002-7319-2192/funding/5909",
1230
+ "display-index" : "0"
1231
+ } ]
1232
+ } ],
1233
+ "path" : "/0000-0002-7319-2192/fundings"
1234
+ },
1235
+ "invited-positions" : {
1236
+ "last-modified-date" : {
1237
+ "value" : 1559916478697
1238
+ },
1239
+ "affiliation-group" : [ {
1240
+ "last-modified-date" : {
1241
+ "value" : 1559916478697
1242
+ },
1243
+ "external-ids" : {
1244
+ "external-id" : [ {
1245
+ "external-id-type" : "grant_number",
1246
+ "external-id-value" : "external-identifier-value2",
1247
+ "external-id-normalized" : {
1248
+ "value" : "external-identifier-value2",
1249
+ "transient" : true
1250
+ },
1251
+ "external-id-normalized-error" : null,
1252
+ "external-id-url" : {
1253
+ "value" : "http://tempuri.org/2"
1254
+ },
1255
+ "external-id-relationship" : "self"
1256
+ }, {
1257
+ "external-id-type" : "grant_number",
1258
+ "external-id-value" : "external-identifier-value",
1259
+ "external-id-normalized" : {
1260
+ "value" : "external-identifier-value",
1261
+ "transient" : true
1262
+ },
1263
+ "external-id-normalized-error" : null,
1264
+ "external-id-url" : {
1265
+ "value" : "http://tempuri.org"
1266
+ },
1267
+ "external-id-relationship" : "self"
1268
+ } ]
1269
+ },
1270
+ "summaries" : [ {
1271
+ "invited-position-summary" : {
1272
+ "created-date" : {
1273
+ "value" : 1559916478697
1274
+ },
1275
+ "last-modified-date" : {
1276
+ "value" : 1559916478697
1277
+ },
1278
+ "source" : {
1279
+ "source-orcid" : null,
1280
+ "source-client-id" : {
1281
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
1282
+ "path" : "APP-OQYKBIN9CXD9U3SH",
1283
+ "host" : "sandbox.orcid.org"
1284
+ },
1285
+ "source-name" : {
1286
+ "value" : "Demo Org Sandbox "
1287
+ },
1288
+ "assertion-origin-orcid" : {
1289
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
1290
+ "path" : "0000-0002-7319-2192",
1291
+ "host" : "sandbox.orcid.org"
1292
+ },
1293
+ "assertion-origin-client-id" : null,
1294
+ "assertion-origin-name" : {
1295
+ "value" : "Three releasecandidate1"
1296
+ }
1297
+ },
1298
+ "put-code" : 9267,
1299
+ "department-name" : "department-name",
1300
+ "role-title" : "role-title",
1301
+ "start-date" : {
1302
+ "year" : {
1303
+ "value" : "1948"
1304
+ },
1305
+ "month" : {
1306
+ "value" : "02"
1307
+ },
1308
+ "day" : {
1309
+ "value" : "02"
1310
+ }
1311
+ },
1312
+ "end-date" : {
1313
+ "year" : {
1314
+ "value" : "1948"
1315
+ },
1316
+ "month" : {
1317
+ "value" : "02"
1318
+ },
1319
+ "day" : {
1320
+ "value" : "02"
1321
+ }
1322
+ },
1323
+ "organization" : {
1324
+ "name" : "common:name",
1325
+ "address" : {
1326
+ "city" : "common:city",
1327
+ "region" : "common:region",
1328
+ "country" : "AF"
1329
+ },
1330
+ "disambiguated-organization" : {
1331
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
1332
+ "disambiguation-source" : "FUNDREF"
1333
+ }
1334
+ },
1335
+ "url" : {
1336
+ "value" : "http://tempuri.org"
1337
+ },
1338
+ "external-ids" : {
1339
+ "external-id" : [ {
1340
+ "external-id-type" : "grant_number",
1341
+ "external-id-value" : "external-identifier-value",
1342
+ "external-id-normalized" : {
1343
+ "value" : "external-identifier-value",
1344
+ "transient" : true
1345
+ },
1346
+ "external-id-normalized-error" : null,
1347
+ "external-id-url" : {
1348
+ "value" : "http://tempuri.org"
1349
+ },
1350
+ "external-id-relationship" : "self"
1351
+ }, {
1352
+ "external-id-type" : "grant_number",
1353
+ "external-id-value" : "external-identifier-value2",
1354
+ "external-id-normalized" : {
1355
+ "value" : "external-identifier-value2",
1356
+ "transient" : true
1357
+ },
1358
+ "external-id-normalized-error" : null,
1359
+ "external-id-url" : {
1360
+ "value" : "http://tempuri.org/2"
1361
+ },
1362
+ "external-id-relationship" : "self"
1363
+ } ]
1364
+ },
1365
+ "display-index" : "0",
1366
+ "visibility" : "public",
1367
+ "path" : "/0000-0002-7319-2192/invited-position/9267"
1368
+ }
1369
+ } ]
1370
+ } ],
1371
+ "path" : "/0000-0002-7319-2192/invited-positions"
1372
+ },
1373
+ "memberships" : {
1374
+ "last-modified-date" : {
1375
+ "value" : 1559916503571
1376
+ },
1377
+ "affiliation-group" : [ {
1378
+ "last-modified-date" : {
1379
+ "value" : 1559916503571
1380
+ },
1381
+ "external-ids" : {
1382
+ "external-id" : [ {
1383
+ "external-id-type" : "grant_number",
1384
+ "external-id-value" : "external-identifier-value2",
1385
+ "external-id-normalized" : {
1386
+ "value" : "external-identifier-value2",
1387
+ "transient" : true
1388
+ },
1389
+ "external-id-normalized-error" : null,
1390
+ "external-id-url" : {
1391
+ "value" : "http://tempuri.org/2"
1392
+ },
1393
+ "external-id-relationship" : "self"
1394
+ }, {
1395
+ "external-id-type" : "grant_number",
1396
+ "external-id-value" : "external-identifier-value",
1397
+ "external-id-normalized" : {
1398
+ "value" : "external-identifier-value",
1399
+ "transient" : true
1400
+ },
1401
+ "external-id-normalized-error" : null,
1402
+ "external-id-url" : {
1403
+ "value" : "http://tempuri.org"
1404
+ },
1405
+ "external-id-relationship" : "self"
1406
+ } ]
1407
+ },
1408
+ "summaries" : [ {
1409
+ "membership-summary" : {
1410
+ "created-date" : {
1411
+ "value" : 1559916503571
1412
+ },
1413
+ "last-modified-date" : {
1414
+ "value" : 1559916503571
1415
+ },
1416
+ "source" : {
1417
+ "source-orcid" : null,
1418
+ "source-client-id" : {
1419
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
1420
+ "path" : "APP-OQYKBIN9CXD9U3SH",
1421
+ "host" : "sandbox.orcid.org"
1422
+ },
1423
+ "source-name" : {
1424
+ "value" : "Demo Org Sandbox "
1425
+ },
1426
+ "assertion-origin-orcid" : {
1427
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
1428
+ "path" : "0000-0002-7319-2192",
1429
+ "host" : "sandbox.orcid.org"
1430
+ },
1431
+ "assertion-origin-client-id" : null,
1432
+ "assertion-origin-name" : {
1433
+ "value" : "Three releasecandidate1"
1434
+ }
1435
+ },
1436
+ "put-code" : 9268,
1437
+ "department-name" : "department-name",
1438
+ "role-title" : "role-title",
1439
+ "start-date" : {
1440
+ "year" : {
1441
+ "value" : "1948"
1442
+ },
1443
+ "month" : {
1444
+ "value" : "02"
1445
+ },
1446
+ "day" : {
1447
+ "value" : "02"
1448
+ }
1449
+ },
1450
+ "end-date" : {
1451
+ "year" : {
1452
+ "value" : "1948"
1453
+ },
1454
+ "month" : {
1455
+ "value" : "02"
1456
+ },
1457
+ "day" : {
1458
+ "value" : "02"
1459
+ }
1460
+ },
1461
+ "organization" : {
1462
+ "name" : "common:name",
1463
+ "address" : {
1464
+ "city" : "common:city",
1465
+ "region" : "common:region",
1466
+ "country" : "AF"
1467
+ },
1468
+ "disambiguated-organization" : {
1469
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
1470
+ "disambiguation-source" : "FUNDREF"
1471
+ }
1472
+ },
1473
+ "url" : {
1474
+ "value" : "http://tempuri.org"
1475
+ },
1476
+ "external-ids" : {
1477
+ "external-id" : [ {
1478
+ "external-id-type" : "grant_number",
1479
+ "external-id-value" : "external-identifier-value",
1480
+ "external-id-normalized" : {
1481
+ "value" : "external-identifier-value",
1482
+ "transient" : true
1483
+ },
1484
+ "external-id-normalized-error" : null,
1485
+ "external-id-url" : {
1486
+ "value" : "http://tempuri.org"
1487
+ },
1488
+ "external-id-relationship" : "self"
1489
+ }, {
1490
+ "external-id-type" : "grant_number",
1491
+ "external-id-value" : "external-identifier-value2",
1492
+ "external-id-normalized" : {
1493
+ "value" : "external-identifier-value2",
1494
+ "transient" : true
1495
+ },
1496
+ "external-id-normalized-error" : null,
1497
+ "external-id-url" : {
1498
+ "value" : "http://tempuri.org/2"
1499
+ },
1500
+ "external-id-relationship" : "self"
1501
+ } ]
1502
+ },
1503
+ "display-index" : "0",
1504
+ "visibility" : "public",
1505
+ "path" : "/0000-0002-7319-2192/membership/9268"
1506
+ }
1507
+ } ]
1508
+ } ],
1509
+ "path" : "/0000-0002-7319-2192/memberships"
1510
+ },
1511
+ "peer-reviews" : {
1512
+ "last-modified-date" : {
1513
+ "value" : 1559916536465
1514
+ },
1515
+ "group" : [ {
1516
+ "last-modified-date" : {
1517
+ "value" : 1559916536465
1518
+ },
1519
+ "external-ids" : {
1520
+ "external-id" : [ {
1521
+ "external-id-type" : "peer-review",
1522
+ "external-id-value" : "issn:1741-4857",
1523
+ "external-id-normalized" : null,
1524
+ "external-id-normalized-error" : null,
1525
+ "external-id-url" : null,
1526
+ "external-id-relationship" : null
1527
+ } ]
1528
+ },
1529
+ "peer-review-group" : [ {
1530
+ "last-modified-date" : {
1531
+ "value" : 1559916536465
1532
+ },
1533
+ "external-ids" : {
1534
+ "external-id" : [ {
1535
+ "external-id-type" : "source-work-id",
1536
+ "external-id-value" : "1234",
1537
+ "external-id-normalized" : {
1538
+ "value" : "1234",
1539
+ "transient" : true
1540
+ },
1541
+ "external-id-normalized-error" : null,
1542
+ "external-id-url" : {
1543
+ "value" : "https://localsystem.org/1234"
1544
+ },
1545
+ "external-id-relationship" : "self"
1546
+ } ]
1547
+ },
1548
+ "peer-review-summary" : [ {
1549
+ "created-date" : {
1550
+ "value" : 1540898917872
1551
+ },
1552
+ "last-modified-date" : {
1553
+ "value" : 1540898917872
1554
+ },
1555
+ "source" : {
1556
+ "source-orcid" : null,
1557
+ "source-client-id" : {
1558
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
1559
+ "path" : "APP-OQYKBIN9CXD9U3SH",
1560
+ "host" : "sandbox.orcid.org"
1561
+ },
1562
+ "source-name" : {
1563
+ "value" : "Demo Org Sandbox "
1564
+ },
1565
+ "assertion-origin-orcid" : null,
1566
+ "assertion-origin-client-id" : null,
1567
+ "assertion-origin-name" : null
1568
+ },
1569
+ "reviewer-role" : "reviewer",
1570
+ "external-ids" : {
1571
+ "external-id" : [ {
1572
+ "external-id-type" : "source-work-id",
1573
+ "external-id-value" : "1234",
1574
+ "external-id-normalized" : {
1575
+ "value" : "1234",
1576
+ "transient" : true
1577
+ },
1578
+ "external-id-normalized-error" : null,
1579
+ "external-id-url" : {
1580
+ "value" : "https://localsystem.org/1234"
1581
+ },
1582
+ "external-id-relationship" : "self"
1583
+ } ]
1584
+ },
1585
+ "review-url" : {
1586
+ "value" : "https://alt-url.com"
1587
+ },
1588
+ "review-type" : "review",
1589
+ "completion-date" : {
1590
+ "year" : {
1591
+ "value" : "2012"
1592
+ },
1593
+ "month" : {
1594
+ "value" : "08"
1595
+ },
1596
+ "day" : {
1597
+ "value" : "01"
1598
+ }
1599
+ },
1600
+ "review-group-id" : "issn:1741-4857",
1601
+ "convening-organization" : {
1602
+ "name" : "ORCID",
1603
+ "address" : {
1604
+ "city" : "Bethesda",
1605
+ "region" : "MD",
1606
+ "country" : "US"
1607
+ },
1608
+ "disambiguated-organization" : {
1609
+ "disambiguated-organization-identifier" : "385488",
1610
+ "disambiguation-source" : "RINGGOLD"
1611
+ }
1612
+ },
1613
+ "visibility" : "public",
1614
+ "put-code" : 1961,
1615
+ "path" : "/0000-0002-7319-2192/peer-review/1961",
1616
+ "display-index" : "0"
1617
+ }, {
1618
+ "created-date" : {
1619
+ "value" : 1559916536465
1620
+ },
1621
+ "last-modified-date" : {
1622
+ "value" : 1559916536465
1623
+ },
1624
+ "source" : {
1625
+ "source-orcid" : null,
1626
+ "source-client-id" : {
1627
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
1628
+ "path" : "APP-OQYKBIN9CXD9U3SH",
1629
+ "host" : "sandbox.orcid.org"
1630
+ },
1631
+ "source-name" : {
1632
+ "value" : "Demo Org Sandbox "
1633
+ },
1634
+ "assertion-origin-orcid" : {
1635
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
1636
+ "path" : "0000-0002-7319-2192",
1637
+ "host" : "sandbox.orcid.org"
1638
+ },
1639
+ "assertion-origin-client-id" : null,
1640
+ "assertion-origin-name" : {
1641
+ "value" : "Three releasecandidate1"
1642
+ }
1643
+ },
1644
+ "reviewer-role" : "reviewer",
1645
+ "external-ids" : {
1646
+ "external-id" : [ {
1647
+ "external-id-type" : "source-work-id",
1648
+ "external-id-value" : "1234",
1649
+ "external-id-normalized" : {
1650
+ "value" : "1234",
1651
+ "transient" : true
1652
+ },
1653
+ "external-id-normalized-error" : null,
1654
+ "external-id-url" : {
1655
+ "value" : "https://localsystem.org/1234"
1656
+ },
1657
+ "external-id-relationship" : "self"
1658
+ } ]
1659
+ },
1660
+ "review-url" : {
1661
+ "value" : "https://alt-url.com"
1662
+ },
1663
+ "review-type" : "review",
1664
+ "completion-date" : {
1665
+ "year" : {
1666
+ "value" : "2012"
1667
+ },
1668
+ "month" : {
1669
+ "value" : "08"
1670
+ },
1671
+ "day" : {
1672
+ "value" : "01"
1673
+ }
1674
+ },
1675
+ "review-group-id" : "issn:1741-4857",
1676
+ "convening-organization" : {
1677
+ "name" : "ORCID",
1678
+ "address" : {
1679
+ "city" : "Bethesda",
1680
+ "region" : "MD",
1681
+ "country" : "US"
1682
+ },
1683
+ "disambiguated-organization" : {
1684
+ "disambiguated-organization-identifier" : "385488",
1685
+ "disambiguation-source" : "RINGGOLD"
1686
+ }
1687
+ },
1688
+ "visibility" : "public",
1689
+ "put-code" : 2389,
1690
+ "path" : "/0000-0002-7319-2192/peer-review/2389",
1691
+ "display-index" : "0"
1692
+ } ]
1693
+ } ]
1694
+ } ],
1695
+ "path" : "/0000-0002-7319-2192/peer-reviews"
1696
+ },
1697
+ "qualifications" : {
1698
+ "last-modified-date" : {
1699
+ "value" : 1559916604796
1700
+ },
1701
+ "affiliation-group" : [ {
1702
+ "last-modified-date" : {
1703
+ "value" : 1559916604796
1704
+ },
1705
+ "external-ids" : {
1706
+ "external-id" : [ {
1707
+ "external-id-type" : "grant_number",
1708
+ "external-id-value" : "external-identifier-value2",
1709
+ "external-id-normalized" : {
1710
+ "value" : "external-identifier-value2",
1711
+ "transient" : true
1712
+ },
1713
+ "external-id-normalized-error" : null,
1714
+ "external-id-url" : {
1715
+ "value" : "http://tempuri.org/2"
1716
+ },
1717
+ "external-id-relationship" : "self"
1718
+ }, {
1719
+ "external-id-type" : "grant_number",
1720
+ "external-id-value" : "external-identifier-value",
1721
+ "external-id-normalized" : {
1722
+ "value" : "external-identifier-value",
1723
+ "transient" : true
1724
+ },
1725
+ "external-id-normalized-error" : null,
1726
+ "external-id-url" : {
1727
+ "value" : "http://tempuri.org"
1728
+ },
1729
+ "external-id-relationship" : "self"
1730
+ } ]
1731
+ },
1732
+ "summaries" : [ {
1733
+ "qualification-summary" : {
1734
+ "created-date" : {
1735
+ "value" : 1559916604796
1736
+ },
1737
+ "last-modified-date" : {
1738
+ "value" : 1559916604796
1739
+ },
1740
+ "source" : {
1741
+ "source-orcid" : null,
1742
+ "source-client-id" : {
1743
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
1744
+ "path" : "APP-OQYKBIN9CXD9U3SH",
1745
+ "host" : "sandbox.orcid.org"
1746
+ },
1747
+ "source-name" : {
1748
+ "value" : "Demo Org Sandbox "
1749
+ },
1750
+ "assertion-origin-orcid" : {
1751
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
1752
+ "path" : "0000-0002-7319-2192",
1753
+ "host" : "sandbox.orcid.org"
1754
+ },
1755
+ "assertion-origin-client-id" : null,
1756
+ "assertion-origin-name" : {
1757
+ "value" : "Three releasecandidate1"
1758
+ }
1759
+ },
1760
+ "put-code" : 9269,
1761
+ "department-name" : "department-name",
1762
+ "role-title" : "role-title",
1763
+ "start-date" : {
1764
+ "year" : {
1765
+ "value" : "1948"
1766
+ },
1767
+ "month" : {
1768
+ "value" : "02"
1769
+ },
1770
+ "day" : {
1771
+ "value" : "02"
1772
+ }
1773
+ },
1774
+ "end-date" : {
1775
+ "year" : {
1776
+ "value" : "1948"
1777
+ },
1778
+ "month" : {
1779
+ "value" : "02"
1780
+ },
1781
+ "day" : {
1782
+ "value" : "02"
1783
+ }
1784
+ },
1785
+ "organization" : {
1786
+ "name" : "common:name",
1787
+ "address" : {
1788
+ "city" : "common:city",
1789
+ "region" : "common:region",
1790
+ "country" : "AF"
1791
+ },
1792
+ "disambiguated-organization" : {
1793
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
1794
+ "disambiguation-source" : "FUNDREF"
1795
+ }
1796
+ },
1797
+ "url" : {
1798
+ "value" : "http://tempuri.org"
1799
+ },
1800
+ "external-ids" : {
1801
+ "external-id" : [ {
1802
+ "external-id-type" : "grant_number",
1803
+ "external-id-value" : "external-identifier-value",
1804
+ "external-id-normalized" : {
1805
+ "value" : "external-identifier-value",
1806
+ "transient" : true
1807
+ },
1808
+ "external-id-normalized-error" : null,
1809
+ "external-id-url" : {
1810
+ "value" : "http://tempuri.org"
1811
+ },
1812
+ "external-id-relationship" : "self"
1813
+ }, {
1814
+ "external-id-type" : "grant_number",
1815
+ "external-id-value" : "external-identifier-value2",
1816
+ "external-id-normalized" : {
1817
+ "value" : "external-identifier-value2",
1818
+ "transient" : true
1819
+ },
1820
+ "external-id-normalized-error" : null,
1821
+ "external-id-url" : {
1822
+ "value" : "http://tempuri.org/2"
1823
+ },
1824
+ "external-id-relationship" : "self"
1825
+ } ]
1826
+ },
1827
+ "display-index" : "0",
1828
+ "visibility" : "public",
1829
+ "path" : "/0000-0002-7319-2192/qualification/9269"
1830
+ }
1831
+ } ]
1832
+ } ],
1833
+ "path" : "/0000-0002-7319-2192/qualifications"
1834
+ },
1835
+ "research-resources" : {
1836
+ "last-modified-date" : {
1837
+ "value" : 1559916641301
1838
+ },
1839
+ "group" : [ {
1840
+ "last-modified-date" : {
1841
+ "value" : 1559916641301
1842
+ },
1843
+ "external-ids" : {
1844
+ "external-id" : [ {
1845
+ "external-id-type" : "source-work-id",
1846
+ "external-id-value" : "123456",
1847
+ "external-id-normalized" : {
1848
+ "value" : "123456",
1849
+ "transient" : true
1850
+ },
1851
+ "external-id-normalized-error" : null,
1852
+ "external-id-url" : null,
1853
+ "external-id-relationship" : "self"
1854
+ }, {
1855
+ "external-id-type" : "handle",
1856
+ "external-id-value" : "https://grants.net/123456",
1857
+ "external-id-normalized" : {
1858
+ "value" : "https://grants.net/123456",
1859
+ "transient" : true
1860
+ },
1861
+ "external-id-normalized-error" : null,
1862
+ "external-id-url" : null,
1863
+ "external-id-relationship" : "self"
1864
+ } ]
1865
+ },
1866
+ "research-resource-summary" : [ {
1867
+ "created-date" : {
1868
+ "value" : 1559916641301
1869
+ },
1870
+ "last-modified-date" : {
1871
+ "value" : 1559916641301
1872
+ },
1873
+ "source" : {
1874
+ "source-orcid" : null,
1875
+ "source-client-id" : {
1876
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
1877
+ "path" : "APP-OQYKBIN9CXD9U3SH",
1878
+ "host" : "sandbox.orcid.org"
1879
+ },
1880
+ "source-name" : {
1881
+ "value" : "Demo Org Sandbox "
1882
+ },
1883
+ "assertion-origin-orcid" : {
1884
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
1885
+ "path" : "0000-0002-7319-2192",
1886
+ "host" : "sandbox.orcid.org"
1887
+ },
1888
+ "assertion-origin-client-id" : null,
1889
+ "assertion-origin-name" : {
1890
+ "value" : "Three releasecandidate1"
1891
+ }
1892
+ },
1893
+ "proposal" : {
1894
+ "title" : {
1895
+ "title" : {
1896
+ "value" : "Giant Rocket Award"
1897
+ },
1898
+ "translated-title" : null
1899
+ },
1900
+ "hosts" : {
1901
+ "organization" : [ {
1902
+ "name" : "NASA",
1903
+ "address" : {
1904
+ "city" : "Washington",
1905
+ "region" : "District of Columbia",
1906
+ "country" : "US"
1907
+ },
1908
+ "disambiguated-organization" : {
1909
+ "disambiguated-organization-identifier" : "grid.238252.c",
1910
+ "disambiguation-source" : "GRID"
1911
+ }
1912
+ } ]
1913
+ },
1914
+ "external-ids" : {
1915
+ "external-id" : [ {
1916
+ "external-id-type" : "source-work-id",
1917
+ "external-id-value" : "123456",
1918
+ "external-id-normalized" : {
1919
+ "value" : "123456",
1920
+ "transient" : true
1921
+ },
1922
+ "external-id-normalized-error" : null,
1923
+ "external-id-url" : null,
1924
+ "external-id-relationship" : "self"
1925
+ }, {
1926
+ "external-id-type" : "handle",
1927
+ "external-id-value" : "https://grants.net/123456",
1928
+ "external-id-normalized" : {
1929
+ "value" : "https://grants.net/123456",
1930
+ "transient" : true
1931
+ },
1932
+ "external-id-normalized-error" : null,
1933
+ "external-id-url" : null,
1934
+ "external-id-relationship" : "self"
1935
+ } ]
1936
+ },
1937
+ "start-date" : {
1938
+ "year" : {
1939
+ "value" : "1999"
1940
+ },
1941
+ "month" : {
1942
+ "value" : "02"
1943
+ },
1944
+ "day" : {
1945
+ "value" : "02"
1946
+ }
1947
+ },
1948
+ "end-date" : {
1949
+ "year" : {
1950
+ "value" : "2012"
1951
+ },
1952
+ "month" : {
1953
+ "value" : "02"
1954
+ },
1955
+ "day" : {
1956
+ "value" : "02"
1957
+ }
1958
+ },
1959
+ "url" : {
1960
+ "value" : "http://xsede.org/GiantLaserAward"
1961
+ }
1962
+ },
1963
+ "visibility" : "public",
1964
+ "put-code" : 1498,
1965
+ "path" : "/0000-0002-7319-2192/research-resource/1498",
1966
+ "display-index" : "0"
1967
+ } ]
1968
+ } ],
1969
+ "path" : "/0000-0002-7319-2192/research-resources"
1970
+ },
1971
+ "services" : {
1972
+ "last-modified-date" : {
1973
+ "value" : 1559916770455
1974
+ },
1975
+ "affiliation-group" : [ {
1976
+ "last-modified-date" : {
1977
+ "value" : 1559916770455
1978
+ },
1979
+ "external-ids" : {
1980
+ "external-id" : [ {
1981
+ "external-id-type" : "grant_number",
1982
+ "external-id-value" : "external-identifier-value2",
1983
+ "external-id-normalized" : {
1984
+ "value" : "external-identifier-value2",
1985
+ "transient" : true
1986
+ },
1987
+ "external-id-normalized-error" : null,
1988
+ "external-id-url" : {
1989
+ "value" : "http://tempuri.org/2"
1990
+ },
1991
+ "external-id-relationship" : "self"
1992
+ }, {
1993
+ "external-id-type" : "grant_number",
1994
+ "external-id-value" : "external-identifier-value",
1995
+ "external-id-normalized" : {
1996
+ "value" : "external-identifier-value",
1997
+ "transient" : true
1998
+ },
1999
+ "external-id-normalized-error" : null,
2000
+ "external-id-url" : {
2001
+ "value" : "http://tempuri.org"
2002
+ },
2003
+ "external-id-relationship" : "self"
2004
+ } ]
2005
+ },
2006
+ "summaries" : [ {
2007
+ "service-summary" : {
2008
+ "created-date" : {
2009
+ "value" : 1544715882760
2010
+ },
2011
+ "last-modified-date" : {
2012
+ "value" : 1544715882760
2013
+ },
2014
+ "source" : {
2015
+ "source-orcid" : {
2016
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
2017
+ "path" : "0000-0002-7319-2192",
2018
+ "host" : "sandbox.orcid.org"
2019
+ },
2020
+ "source-client-id" : null,
2021
+ "source-name" : {
2022
+ "value" : "Three releasecandidate1"
2023
+ },
2024
+ "assertion-origin-orcid" : null,
2025
+ "assertion-origin-client-id" : null,
2026
+ "assertion-origin-name" : null
2027
+ },
2028
+ "put-code" : 7093,
2029
+ "department-name" : "department-name",
2030
+ "role-title" : "role-title",
2031
+ "start-date" : {
2032
+ "year" : {
2033
+ "value" : "1949"
2034
+ },
2035
+ "month" : {
2036
+ "value" : "02"
2037
+ },
2038
+ "day" : {
2039
+ "value" : "02"
2040
+ }
2041
+ },
2042
+ "end-date" : {
2043
+ "year" : {
2044
+ "value" : "1951"
2045
+ },
2046
+ "month" : {
2047
+ "value" : "02"
2048
+ },
2049
+ "day" : {
2050
+ "value" : "02"
2051
+ }
2052
+ },
2053
+ "organization" : {
2054
+ "name" : "common:name",
2055
+ "address" : {
2056
+ "city" : "common:city",
2057
+ "region" : "common:region",
2058
+ "country" : "AF"
2059
+ },
2060
+ "disambiguated-organization" : {
2061
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100011942",
2062
+ "disambiguation-source" : "FUNDREF"
2063
+ }
2064
+ },
2065
+ "url" : {
2066
+ "value" : "http://tempuri.org"
2067
+ },
2068
+ "external-ids" : {
2069
+ "external-id" : [ {
2070
+ "external-id-type" : "grant_number",
2071
+ "external-id-value" : "external-identifier-value",
2072
+ "external-id-normalized" : {
2073
+ "value" : "external-identifier-value",
2074
+ "transient" : true
2075
+ },
2076
+ "external-id-normalized-error" : null,
2077
+ "external-id-url" : {
2078
+ "value" : "http://tempuri.org"
2079
+ },
2080
+ "external-id-relationship" : "self"
2081
+ }, {
2082
+ "external-id-type" : "grant_number",
2083
+ "external-id-value" : "external-identifier-value2",
2084
+ "external-id-normalized" : {
2085
+ "value" : "external-identifier-value2",
2086
+ "transient" : true
2087
+ },
2088
+ "external-id-normalized-error" : null,
2089
+ "external-id-url" : {
2090
+ "value" : "http://tempuri.org/2"
2091
+ },
2092
+ "external-id-relationship" : "self"
2093
+ } ]
2094
+ },
2095
+ "display-index" : "1",
2096
+ "visibility" : "public",
2097
+ "path" : "/0000-0002-7319-2192/service/7093"
2098
+ }
2099
+ }, {
2100
+ "service-summary" : {
2101
+ "created-date" : {
2102
+ "value" : 1559916770455
2103
+ },
2104
+ "last-modified-date" : {
2105
+ "value" : 1559916770455
2106
+ },
2107
+ "source" : {
2108
+ "source-orcid" : null,
2109
+ "source-client-id" : {
2110
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
2111
+ "path" : "APP-OQYKBIN9CXD9U3SH",
2112
+ "host" : "sandbox.orcid.org"
2113
+ },
2114
+ "source-name" : {
2115
+ "value" : "Demo Org Sandbox "
2116
+ },
2117
+ "assertion-origin-orcid" : {
2118
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
2119
+ "path" : "0000-0002-7319-2192",
2120
+ "host" : "sandbox.orcid.org"
2121
+ },
2122
+ "assertion-origin-client-id" : null,
2123
+ "assertion-origin-name" : {
2124
+ "value" : "Three releasecandidate1"
2125
+ }
2126
+ },
2127
+ "put-code" : 9270,
2128
+ "department-name" : "department-name",
2129
+ "role-title" : "role-title",
2130
+ "start-date" : {
2131
+ "year" : {
2132
+ "value" : "1948"
2133
+ },
2134
+ "month" : {
2135
+ "value" : "02"
2136
+ },
2137
+ "day" : {
2138
+ "value" : "02"
2139
+ }
2140
+ },
2141
+ "end-date" : {
2142
+ "year" : {
2143
+ "value" : "1948"
2144
+ },
2145
+ "month" : {
2146
+ "value" : "02"
2147
+ },
2148
+ "day" : {
2149
+ "value" : "02"
2150
+ }
2151
+ },
2152
+ "organization" : {
2153
+ "name" : "common:name",
2154
+ "address" : {
2155
+ "city" : "common:city",
2156
+ "region" : "common:region",
2157
+ "country" : "AF"
2158
+ },
2159
+ "disambiguated-organization" : {
2160
+ "disambiguated-organization-identifier" : "http://dx.doi.org/10.13039/100000001",
2161
+ "disambiguation-source" : "FUNDREF"
2162
+ }
2163
+ },
2164
+ "url" : {
2165
+ "value" : "http://tempuri.org"
2166
+ },
2167
+ "external-ids" : {
2168
+ "external-id" : [ {
2169
+ "external-id-type" : "grant_number",
2170
+ "external-id-value" : "external-identifier-value",
2171
+ "external-id-normalized" : {
2172
+ "value" : "external-identifier-value",
2173
+ "transient" : true
2174
+ },
2175
+ "external-id-normalized-error" : null,
2176
+ "external-id-url" : {
2177
+ "value" : "http://tempuri.org"
2178
+ },
2179
+ "external-id-relationship" : "self"
2180
+ }, {
2181
+ "external-id-type" : "grant_number",
2182
+ "external-id-value" : "external-identifier-value2",
2183
+ "external-id-normalized" : {
2184
+ "value" : "external-identifier-value2",
2185
+ "transient" : true
2186
+ },
2187
+ "external-id-normalized-error" : null,
2188
+ "external-id-url" : {
2189
+ "value" : "http://tempuri.org/2"
2190
+ },
2191
+ "external-id-relationship" : "self"
2192
+ } ]
2193
+ },
2194
+ "display-index" : "0",
2195
+ "visibility" : "public",
2196
+ "path" : "/0000-0002-7319-2192/service/9270"
2197
+ }
2198
+ } ]
2199
+ } ],
2200
+ "path" : "/0000-0002-7319-2192/services"
2201
+ },
2202
+ "works" : {
2203
+ "last-modified-date" : {
2204
+ "value" : 1559917017189
2205
+ },
2206
+ "group" : [ {
2207
+ "last-modified-date" : {
2208
+ "value" : 1559917017189
2209
+ },
2210
+ "external-ids" : {
2211
+ "external-id" : [ {
2212
+ "external-id-type" : "doi",
2213
+ "external-id-value" : "10.1087/20120404",
2214
+ "external-id-normalized" : {
2215
+ "value" : "10.1087/20120404",
2216
+ "transient" : true
2217
+ },
2218
+ "external-id-normalized-error" : null,
2219
+ "external-id-url" : {
2220
+ "value" : "https://doi.org/10.1087/20120404"
2221
+ },
2222
+ "external-id-relationship" : "version-of"
2223
+ }, {
2224
+ "external-id-type" : "doi",
2225
+ "external-id-value" : "work:doi",
2226
+ "external-id-normalized" : null,
2227
+ "external-id-normalized-error" : {
2228
+ "error-code" : "8001",
2229
+ "error-message" : "Cannot normalize identifier value doi:work:doi",
2230
+ "transient" : true
2231
+ },
2232
+ "external-id-url" : {
2233
+ "value" : "http://orcid.org"
2234
+ },
2235
+ "external-id-relationship" : "self"
2236
+ } ]
2237
+ },
2238
+ "work-summary" : [ {
2239
+ "put-code" : 178602,
2240
+ "created-date" : {
2241
+ "value" : 1559917017189
2242
+ },
2243
+ "last-modified-date" : {
2244
+ "value" : 1559917017189
2245
+ },
2246
+ "source" : {
2247
+ "source-orcid" : null,
2248
+ "source-client-id" : {
2249
+ "uri" : "https://sandbox.orcid.org/client/APP-OQYKBIN9CXD9U3SH",
2250
+ "path" : "APP-OQYKBIN9CXD9U3SH",
2251
+ "host" : "sandbox.orcid.org"
2252
+ },
2253
+ "source-name" : {
2254
+ "value" : "Demo Org Sandbox "
2255
+ },
2256
+ "assertion-origin-orcid" : {
2257
+ "uri" : "https://sandbox.orcid.org/0000-0002-7319-2192",
2258
+ "path" : "0000-0002-7319-2192",
2259
+ "host" : "sandbox.orcid.org"
2260
+ },
2261
+ "assertion-origin-client-id" : null,
2262
+ "assertion-origin-name" : {
2263
+ "value" : "Three releasecandidate1"
2264
+ }
2265
+ },
2266
+ "title" : {
2267
+ "title" : {
2268
+ "value" : "Work Title"
2269
+ },
2270
+ "subtitle" : null,
2271
+ "translated-title" : {
2272
+ "value" : "Translated-title",
2273
+ "language-code" : "en"
2274
+ }
2275
+ },
2276
+ "external-ids" : {
2277
+ "external-id" : [ {
2278
+ "external-id-type" : "doi",
2279
+ "external-id-value" : "10.1087/20120404",
2280
+ "external-id-normalized" : {
2281
+ "value" : "10.1087/20120404",
2282
+ "transient" : true
2283
+ },
2284
+ "external-id-normalized-error" : null,
2285
+ "external-id-url" : {
2286
+ "value" : "https://doi.org/10.1087/20120404"
2287
+ },
2288
+ "external-id-relationship" : "version-of"
2289
+ }, {
2290
+ "external-id-type" : "doi",
2291
+ "external-id-value" : "work:doi",
2292
+ "external-id-normalized" : null,
2293
+ "external-id-normalized-error" : {
2294
+ "error-code" : "8001",
2295
+ "error-message" : "Cannot normalize identifier value doi:work:doi",
2296
+ "transient" : true
2297
+ },
2298
+ "external-id-url" : {
2299
+ "value" : "http://orcid.org"
2300
+ },
2301
+ "external-id-relationship" : "self"
2302
+ } ]
2303
+ },
2304
+ "url" : {
2305
+ "value" : "http://alt-uri.org"
2306
+ },
2307
+ "type" : "journal-article",
2308
+ "publication-date" : {
2309
+ "year" : {
2310
+ "value" : "2012"
2311
+ },
2312
+ "month" : {
2313
+ "value" : "10"
2314
+ },
2315
+ "day" : {
2316
+ "value" : "01"
2317
+ }
2318
+ },
2319
+ "journal-title" : {
2320
+ "value" : "Jounral Title"
2321
+ },
2322
+ "visibility" : "public",
2323
+ "path" : "/0000-0002-7319-2192/work/178602",
2324
+ "display-index" : "0"
2325
+ } ]
2326
+ } ],
2327
+ "path" : "/0000-0002-7319-2192/works"
2328
+ },
2329
+ "path" : "/0000-0002-7319-2192/activities"
2330
+ },
2331
+ "path" : "/0000-0002-7319-2192"
2332
+ }