orcid_client 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +7 -0
  2. data/.env.example +10 -0
  3. data/.gitignore +42 -0
  4. data/.travis.yml +17 -0
  5. data/CHANGELOG.md +0 -0
  6. data/Gemfile +4 -0
  7. data/Gemfile.lock +115 -0
  8. data/LICENSE.md +21 -0
  9. data/README.md +45 -0
  10. data/Rakefile +5 -0
  11. data/lib/orcid_client.rb +3 -0
  12. data/lib/orcid_client/api.rb +75 -0
  13. data/lib/orcid_client/author.rb +56 -0
  14. data/lib/orcid_client/base.rb +21 -0
  15. data/lib/orcid_client/date.rb +61 -0
  16. data/lib/orcid_client/metadata.rb +128 -0
  17. data/lib/orcid_client/notification.rb +125 -0
  18. data/lib/orcid_client/version.rb +3 -0
  19. data/lib/orcid_client/work.rb +200 -0
  20. data/lib/orcid_client/work_type.rb +68 -0
  21. data/orcid_client.gemspec +37 -0
  22. data/resources/common_2.0_rc3/common-2.0_rc3.xsd +1624 -0
  23. data/resources/common_2.0_rc3/samples/common-2.0_rc3.xml +8 -0
  24. data/resources/notification_2.0_rc3/notification-custom-2.0_rc3.xsd +32 -0
  25. data/resources/notification_2.0_rc3/notification-permission-2.0_rc3.xsd +128 -0
  26. data/resources/notification_2.0_rc3/samples/notification-custom-2.0_rc3.xml +45 -0
  27. data/resources/notification_2.0_rc3/samples/notification-permission-2.0_rc3.xml +58 -0
  28. data/resources/record_2.0_rc3/activities-2.0_rc3.xsd +187 -0
  29. data/resources/record_2.0_rc3/address-2.0_rc3.xsd +73 -0
  30. data/resources/record_2.0_rc3/bulk-2.0_rc3.xsd +57 -0
  31. data/resources/record_2.0_rc3/deprecated-2.0_rc3.xsd +80 -0
  32. data/resources/record_2.0_rc3/education-2.0_rc3.xsd +96 -0
  33. data/resources/record_2.0_rc3/email-2.0_rc3.xsd +74 -0
  34. data/resources/record_2.0_rc3/employment-2.0_rc3.xsd +96 -0
  35. data/resources/record_2.0_rc3/error-2.0_rc3.xsd +84 -0
  36. data/resources/record_2.0_rc3/funding-2.0_rc3.xsd +257 -0
  37. data/resources/record_2.0_rc3/history-2.0_rc3.xsd +203 -0
  38. data/resources/record_2.0_rc3/internal-2.0_rc3.xsd +199 -0
  39. data/resources/record_2.0_rc3/keyword-2.0_rc3.xsd +72 -0
  40. data/resources/record_2.0_rc3/other-name-2.0_rc3.xsd +88 -0
  41. data/resources/record_2.0_rc3/peer-review-2.0_rc3.xsd +246 -0
  42. data/resources/record_2.0_rc3/person-2.0_rc3.xsd +98 -0
  43. data/resources/record_2.0_rc3/person-external-identifier-2.0_rc3.xsd +63 -0
  44. data/resources/record_2.0_rc3/personal-details-2.0_rc3.xsd +186 -0
  45. data/resources/record_2.0_rc3/preferences-2.0_rc3.xsd +50 -0
  46. data/resources/record_2.0_rc3/record-2.0_rc3.xsd +105 -0
  47. data/resources/record_2.0_rc3/researcher-url-2.0_rc3.xsd +90 -0
  48. data/resources/record_2.0_rc3/samples/activities-2.0_rc3.xml +236 -0
  49. data/resources/record_2.0_rc3/samples/address-2.0_rc3.xml +16 -0
  50. data/resources/record_2.0_rc3/samples/addresses-2.0_rc3.xml +32 -0
  51. data/resources/record_2.0_rc3/samples/biography-2.0_rc3.xml +10 -0
  52. data/resources/record_2.0_rc3/samples/bulk-work-2.0_rc3.json +56 -0
  53. data/resources/record_2.0_rc3/samples/bulk-work-2.0_rc3.xml +62 -0
  54. data/resources/record_2.0_rc3/samples/credit-name-2.0_rc3.xml +5 -0
  55. data/resources/record_2.0_rc3/samples/deprecated-2.0_rc3.xml +13 -0
  56. data/resources/record_2.0_rc3/samples/education-2.0_rc3.xml +30 -0
  57. data/resources/record_2.0_rc3/samples/education-full-2.0_rc3.xml +40 -0
  58. data/resources/record_2.0_rc3/samples/email-2.0_rc3.xml +16 -0
  59. data/resources/record_2.0_rc3/samples/emails-2.0_rc3.xml +31 -0
  60. data/resources/record_2.0_rc3/samples/employment-2.0_rc3.xml +30 -0
  61. data/resources/record_2.0_rc3/samples/employment-full-2.0_rc3.xml +40 -0
  62. data/resources/record_2.0_rc3/samples/error-2.0_rc3.xml +8 -0
  63. data/resources/record_2.0_rc3/samples/external-identifier-2.0_rc3.xml +20 -0
  64. data/resources/record_2.0_rc3/samples/external-identifiers-2.0_rc3.xml +36 -0
  65. data/resources/record_2.0_rc3/samples/funding-2.0_rc3.xml +65 -0
  66. data/resources/record_2.0_rc3/samples/funding-full-2.0_rc3.xml +75 -0
  67. data/resources/record_2.0_rc3/samples/history-2.0_rc3.xml +22 -0
  68. data/resources/record_2.0_rc3/samples/keyword-2.0_rc3.xml +18 -0
  69. data/resources/record_2.0_rc3/samples/keywords-2.0_rc3.xml +34 -0
  70. data/resources/record_2.0_rc3/samples/name-2.0_rc3.xml +12 -0
  71. data/resources/record_2.0_rc3/samples/other-name-2.0_rc3.xml +16 -0
  72. data/resources/record_2.0_rc3/samples/other-names-2.0_rc3.xml +31 -0
  73. data/resources/record_2.0_rc3/samples/peer-review-2.0_rc3.xml +49 -0
  74. data/resources/record_2.0_rc3/samples/peer-review-full-2.0_rc3.xml +59 -0
  75. data/resources/record_2.0_rc3/samples/person-2.0_rc3.xml +122 -0
  76. data/resources/record_2.0_rc3/samples/personal-details-2.0_rc3.xml +47 -0
  77. data/resources/record_2.0_rc3/samples/preferences-2.0_rc3.xml +4 -0
  78. data/resources/record_2.0_rc3/samples/record-2.0_rc3.xml +420 -0
  79. data/resources/record_2.0_rc3/samples/researcher-url-2.0_rc3.xml +19 -0
  80. data/resources/record_2.0_rc3/samples/researcher-urls-2.0_rc3.xml +21 -0
  81. data/resources/record_2.0_rc3/samples/search-2.0_rc3.xml +368 -0
  82. data/resources/record_2.0_rc3/samples/work-2.0_rc3.xml +49 -0
  83. data/resources/record_2.0_rc3/samples/work-full-2.0_rc3.xml +59 -0
  84. data/resources/record_2.0_rc3/search-2.0_rc3.xsd +82 -0
  85. data/resources/record_2.0_rc3/work-2.0_rc3.xsd +445 -0
  86. data/spec/api_spec.rb +59 -0
  87. data/spec/fixtures/vcr_cassettes/OrcidClient/get/should_get_works.yml +646 -0
  88. data/spec/fixtures/vcr_cassettes/OrcidClient/notifications/post/should_create_notification.yml +104 -0
  89. data/spec/fixtures/vcr_cassettes/OrcidClient/works/delete/should_delete_work.yml +38 -0
  90. data/spec/fixtures/vcr_cassettes/OrcidClient/works/get/should_get_works.yml +646 -0
  91. data/spec/fixtures/vcr_cassettes/OrcidClient/works/post/should_create_work.yml +116 -0
  92. data/spec/fixtures/vcr_cassettes/OrcidClient/works/put/should_update_work.yml +155 -0
  93. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/data.yml +44 -0
  94. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/schema/validates_data.yml +44 -0
  95. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/schema/validates_item_type_work.yml +41 -0
  96. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/citation.yml +50 -0
  97. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/literal.yml +47 -0
  98. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/multiple_titles.yml +47 -0
  99. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/valid.yml +50 -0
  100. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/with_ORCID_IDs.yml +157 -0
  101. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/data.yml +50 -0
  102. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/publication_date.yml +50 -0
  103. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_ORCID_IDs_for_contributors.yml +157 -0
  104. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_data.yml +50 -0
  105. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_work_type_data-set.yml +47 -0
  106. data/spec/fixtures/work.xml +33 -0
  107. data/spec/notification_spec.rb +42 -0
  108. data/spec/spec_helper.rb +32 -0
  109. data/spec/work_spec.rb +100 -0
  110. metadata +392 -0
@@ -0,0 +1,90 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
3
+ xmlns:sch="http://purl.oclc.org/dsdl/schematron" elementFormDefault="qualified"
4
+ targetNamespace="http://www.orcid.org/ns/researcher-url"
5
+ xmlns:researcher-url="http://www.orcid.org/ns/researcher-url"
6
+ xmlns:common="http://www.orcid.org/ns/common">
7
+ <xs:annotation>
8
+ <xs:documentation>
9
+ =============================================================================
10
+
11
+ ORCID (R) Open Source
12
+ http://orcid.org
13
+
14
+ Copyright (c) 2012-2014 ORCID,
15
+ Inc.
16
+ Licensed under an MIT-Style License (MIT)
17
+ http://orcid.org/open-source-license
18
+
19
+ This copyright and license
20
+ information (including a link to the full
21
+ license)
22
+ shall be included in
23
+ its entirety in all copies or substantial portion of
24
+ the software.
25
+
26
+ =============================================================================
27
+ The schema describes the message format used for ORCID API requests
28
+ and responses.
29
+ </xs:documentation>
30
+ <xs:appinfo>
31
+ <sch:title>Schematron validation</sch:title>
32
+ <sch:ns prefix="researcher-url" uri="http://www.orcid.org/ns/researcher-url" />
33
+ </xs:appinfo>
34
+ </xs:annotation>
35
+ <xs:import namespace="http://www.orcid.org/ns/common"
36
+ schemaLocation="../common_2.0_rc3/common-2.0_rc3.xsd" />
37
+ <xs:element name="researcher-urls">
38
+ <xs:complexType>
39
+ <xs:annotation>
40
+ <xs:documentation>Container for URLs of the researcher or
41
+ contributor's sites. The visibility attribute (private, limited or
42
+ public) can be set at record creation, and indicates who can see
43
+ this section of information.
44
+ </xs:documentation>
45
+ </xs:annotation>
46
+ <xs:sequence>
47
+ <xs:element ref="common:last-modified-date" minOccurs="0" maxOccurs="1" />
48
+ <xs:element name="researcher-url" type="researcher-url:researcher-url"
49
+ minOccurs="0" maxOccurs="unbounded" />
50
+ </xs:sequence>
51
+ <xs:attribute name="path" type="common:element-path" use="optional" />
52
+ </xs:complexType>
53
+ </xs:element>
54
+
55
+ <xs:element name="researcher-url">
56
+ <xs:annotation>
57
+ <xs:documentation>The display name and URL for one of the researcher
58
+ or contributor's sites.
59
+ </xs:documentation>
60
+ </xs:annotation>
61
+ <xs:complexType>
62
+ <xs:complexContent>
63
+ <xs:extension base="researcher-url:researcher-url"></xs:extension>
64
+ </xs:complexContent>
65
+ </xs:complexType>
66
+ </xs:element>
67
+
68
+ <xs:complexType name="researcher-url">
69
+ <xs:complexContent>
70
+ <xs:extension base="common:element-summary">
71
+ <xs:sequence>
72
+ <xs:element minOccurs="1" maxOccurs="1" name="url-name"
73
+ type="common:non-empty-string">
74
+ <xs:annotation>
75
+ <xs:documentation>A short display name describing the URL.
76
+ </xs:documentation>
77
+ </xs:annotation>
78
+ </xs:element>
79
+ <xs:element name="url" type="common:url" minOccurs="1"
80
+ maxOccurs="1">
81
+ <xs:annotation>
82
+ <xs:documentation>The URL (including http:// or https://).
83
+ </xs:documentation>
84
+ </xs:annotation>
85
+ </xs:element>
86
+ </xs:sequence>
87
+ </xs:extension>
88
+ </xs:complexContent>
89
+ </xs:complexType>
90
+ </xs:schema>
@@ -0,0 +1,236 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <activities:activities-summary
3
+ xmlns:activities="http://www.orcid.org/ns/activities"
4
+ xmlns:employment="http://www.orcid.org/ns/employment" xmlns:common="http://www.orcid.org/ns/common"
5
+ xmlns:education="http://www.orcid.org/ns/education" xmlns:funding="http://www.orcid.org/ns/funding"
6
+ xmlns:work="http://www.orcid.org/ns/work" xmlns:peer-review="http://www.orcid.org/ns/peer-review"
7
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
+ xsi:schemaLocation="http://www.orcid.org/ns/activities ../activities-2.0_rc3.xsd ">
9
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
10
+ <activities:educations>
11
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
12
+ <education:education-summary put-code="0"
13
+ visibility="private" display-index="0">
14
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
15
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
16
+ <common:source>
17
+ <common:source-orcid>
18
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
19
+ <common:path>8888-8888-8888-8880</common:path>
20
+ <common:host>orcid.org</common:host>
21
+ </common:source-orcid>
22
+ <common:source-name />
23
+ </common:source>
24
+ <education:department-name>education:department-name</education:department-name>
25
+ <education:role-title>education:role-title</education:role-title>
26
+ <common:start-date>
27
+ <common:year>2014</common:year>
28
+ <common:month>12</common:month>
29
+ <common:day>20</common:day>
30
+ </common:start-date>
31
+ <common:end-date>
32
+ <common:year>2014</common:year>
33
+ <common:month>12</common:month>
34
+ <common:day>20</common:day>
35
+ </common:end-date>
36
+ <education:organization>
37
+ <common:name>common:name</common:name>
38
+ <common:address>
39
+ <common:city>common:city</common:city>
40
+ <common:region>common:region</common:region>
41
+ <common:country>AF</common:country>
42
+ </common:address>
43
+ <common:disambiguated-organization>
44
+ <common:disambiguated-organization-identifier>common:disambiguated-organization-identifier</common:disambiguated-organization-identifier>
45
+ <common:disambiguation-source>common:disambiguation-source</common:disambiguation-source>
46
+ </common:disambiguated-organization>
47
+ </education:organization>
48
+ </education:education-summary>
49
+ </activities:educations>
50
+ <activities:employments>
51
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
52
+ <employment:employment-summary
53
+ put-code="0" visibility="private" display-index="0">
54
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
55
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
56
+ <common:source>
57
+ <common:source-orcid>
58
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
59
+ <common:path>8888-8888-8888-8880</common:path>
60
+ <common:host>orcid.org</common:host>
61
+ </common:source-orcid>
62
+ <common:source-name />
63
+ </common:source>
64
+ <employment:department-name>employment:department-name</employment:department-name>
65
+ <employment:role-title>employment:role-title</employment:role-title>
66
+ <common:start-date>
67
+ <common:year>2014</common:year>
68
+ <common:month>12</common:month>
69
+ <common:day>20</common:day>
70
+ </common:start-date>
71
+ <common:end-date>
72
+ <common:year>2014</common:year>
73
+ <common:month>12</common:month>
74
+ <common:day>20</common:day>
75
+ </common:end-date>
76
+ <employment:organization>
77
+ <common:name>common:name</common:name>
78
+ <common:address>
79
+ <common:city>common:city</common:city>
80
+ <common:region>common:region</common:region>
81
+ <common:country>AF</common:country>
82
+ </common:address>
83
+ <common:disambiguated-organization>
84
+ <common:disambiguated-organization-identifier>common:disambiguated-organization-identifier</common:disambiguated-organization-identifier>
85
+ <common:disambiguation-source>common:disambiguation-source</common:disambiguation-source>
86
+ </common:disambiguated-organization>
87
+ </employment:organization>
88
+ </employment:employment-summary>
89
+ </activities:employments>
90
+ <activities:fundings>
91
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
92
+ <activities:group>
93
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
94
+ <common:external-ids>
95
+ <common:external-id>
96
+ <common:external-id-type>grant_number</common:external-id-type>
97
+ <common:external-id-value>external-id-value</common:external-id-value>
98
+ <common:external-id-url>http://tempuri.org</common:external-id-url>
99
+ <common:external-id-relationship>self</common:external-id-relationship>
100
+ </common:external-id>
101
+ </common:external-ids>
102
+ <funding:summary put-code="0" visibility="private" display-index="0">
103
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
104
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
105
+ <common:source>
106
+ <common:source-orcid>
107
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
108
+ <common:path>8888-8888-8888-8880</common:path>
109
+ <common:host>orcid.org</common:host>
110
+ </common:source-orcid>
111
+ <common:source-name />
112
+ </common:source>
113
+ <funding:title>
114
+ <common:title>common:title</common:title>
115
+ <common:translated-title language-code="en">common:translated-title</common:translated-title>
116
+ </funding:title>
117
+ <common:external-ids>
118
+ <common:external-id>
119
+ <common:external-id-type>grant_number</common:external-id-type>
120
+ <common:external-id-value>external-id-value</common:external-id-value>
121
+ <common:external-id-url>http://tempuri.org</common:external-id-url>
122
+ <common:external-id-relationship>self</common:external-id-relationship>
123
+ </common:external-id>
124
+ </common:external-ids>
125
+ <funding:type>grant</funding:type>
126
+ <common:start-date>
127
+ <common:year>2014</common:year>
128
+ <common:month>12</common:month>
129
+ <common:day>20</common:day>
130
+ </common:start-date>
131
+ <common:end-date>
132
+ <common:year>2014</common:year>
133
+ <common:month>12</common:month>
134
+ <common:day>20</common:day>
135
+ </common:end-date>
136
+ </funding:summary>
137
+ </activities:group>
138
+ </activities:fundings>
139
+ <activities:peer-reviews>
140
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
141
+ <activities:group>
142
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
143
+ <common:external-ids>
144
+ <common:external-id>
145
+ <common:external-id-type>something</common:external-id-type>
146
+ <common:external-id-value>external-id-value</common:external-id-value>
147
+ <common:external-id-url>http://orcid.org</common:external-id-url>
148
+ <common:external-id-relationship>self</common:external-id-relationship>
149
+ </common:external-id>
150
+ </common:external-ids>
151
+ <peer-review:summary put-code="12345" visibility="private" display-index="0">
152
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
153
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
154
+ <common:source>
155
+ <common:source-orcid>
156
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
157
+ <common:path>8888-8888-8888-8880</common:path>
158
+ <common:host>orcid.org</common:host>
159
+ </common:source-orcid>
160
+ <common:source-name/>
161
+ </common:source>
162
+ <common:external-ids>
163
+ <common:external-id>
164
+ <common:external-id-type>something</common:external-id-type>
165
+ <common:external-id-value>external-id-value</common:external-id-value>
166
+ <common:external-id-url>http://orcid.org</common:external-id-url>
167
+ <common:external-id-relationship>self</common:external-id-relationship>
168
+ </common:external-id>
169
+ </common:external-ids>
170
+ <peer-review:completion-date>
171
+ <common:year>1848</common:year>
172
+ <common:month>02</common:month>
173
+ <common:day>02</common:day>
174
+ </peer-review:completion-date>
175
+ <peer-review:review-group-id>issn:1119191</peer-review:review-group-id>
176
+ <peer-review:convening-organization>
177
+ <common:name>common:name</common:name>
178
+ <common:address>
179
+ <common:city>common:city</common:city>
180
+ <common:region>common:region</common:region>
181
+ <common:country>AF</common:country>
182
+ </common:address>
183
+ <common:disambiguated-organization>
184
+ <common:disambiguated-organization-identifier>common:disambiguated-organization-identifier</common:disambiguated-organization-identifier>
185
+ <common:disambiguation-source>common:disambiguation-source</common:disambiguation-source>
186
+ </common:disambiguated-organization>
187
+ </peer-review:convening-organization>
188
+ </peer-review:summary>
189
+ </activities:group>
190
+ </activities:peer-reviews>
191
+ <activities:works>
192
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
193
+ <activities:group>
194
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
195
+ <common:external-ids>
196
+ <common:external-id>
197
+ <common:external-id-type>agr</common:external-id-type>
198
+ <common:external-id-value>external-id-value</common:external-id-value>
199
+ <common:external-id-url>http://orcid.org</common:external-id-url>
200
+ <common:external-id-relationship>self</common:external-id-relationship>
201
+ </common:external-id>
202
+ </common:external-ids>
203
+ <work:work-summary put-code="0" visibility="private" display-index="0">
204
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
205
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
206
+ <common:source>
207
+ <common:source-orcid>
208
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
209
+ <common:path>8888-8888-8888-8880</common:path>
210
+ <common:host>orcid.org</common:host>
211
+ </common:source-orcid>
212
+ <common:source-name />
213
+ </common:source>
214
+ <work:title>
215
+ <common:title>common:title</common:title>
216
+ <common:subtitle />
217
+ <common:translated-title language-code="en">common:translated-title</common:translated-title>
218
+ </work:title>
219
+ <common:external-ids>
220
+ <common:external-id>
221
+ <common:external-id-type>agr</common:external-id-type>
222
+ <common:external-id-value>external-id-value</common:external-id-value>
223
+ <common:external-id-url>http://orcid.org</common:external-id-url>
224
+ <common:external-id-relationship>self</common:external-id-relationship>
225
+ </common:external-id>
226
+ </common:external-ids>
227
+ <work:type>artistic-performance</work:type>
228
+ <common:publication-date>
229
+ <common:year>1848</common:year>
230
+ <common:month>02</common:month>
231
+ <common:day>02</common:day>
232
+ </common:publication-date>
233
+ </work:work-summary>
234
+ </activities:group>
235
+ </activities:works>
236
+ </activities:activities-summary>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <address:address visibility="public" put-code="1" xmlns:address="http://www.orcid.org/ns/address"
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/address ../address-2.0_rc3.xsd ">
5
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
6
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
7
+ <common:source>
8
+ <common:source-orcid>
9
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
10
+ <common:path>8888-8888-8888-8880</common:path>
11
+ <common:host>orcid.org</common:host>
12
+ </common:source-orcid>
13
+ <common:source-name />
14
+ </common:source>
15
+ <address:country>US</address:country>
16
+ </address:address>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <address:addresses xmlns:address="http://www.orcid.org/ns/address"
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/address ../address-2.0_rc3.xsd ">
5
+ <common:last-modified-date>2002-11-30T12:00:00</common:last-modified-date>
6
+ <address:address visibility="public" put-code="1">
7
+ <common:created-date>2001-12-31T12:00:00</common:created-date>
8
+ <common:last-modified-date>2001-12-31T12:00:00</common:last-modified-date>
9
+ <common:source>
10
+ <common:source-orcid>
11
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
12
+ <common:path>8888-8888-8888-8880</common:path>
13
+ <common:host>orcid.org</common:host>
14
+ </common:source-orcid>
15
+ <common:source-name />
16
+ </common:source>
17
+ <address:country>US</address:country>
18
+ </address:address>
19
+ <address:address visibility="limited" put-code="2">
20
+ <common:created-date>2002-11-30T12:00:00</common:created-date>
21
+ <common:last-modified-date>2002-11-30T12:00:00</common:last-modified-date>
22
+ <common:source>
23
+ <common:source-orcid>
24
+ <common:uri>http://orcid.org/8888-8888-8888-8880</common:uri>
25
+ <common:path>8888-8888-8888-8880</common:path>
26
+ <common:host>orcid.org</common:host>
27
+ </common:source-orcid>
28
+ <common:source-name />
29
+ </common:source>
30
+ <address:country>CR</address:country>
31
+ </address:address>
32
+ </address:addresses>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <personal-details:biography visibility="public"
3
+ xmlns:personal-details="http://www.orcid.org/ns/personal-details"
4
+ xmlns:common="http://www.orcid.org/ns/common"
5
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6
+ xsi:schemaLocation="http://www.orcid.org/ns/personal-details ../personal-details-2.0_rc3.xsd">
7
+ <common:created-date>2016-04-27T13:22:53.471-06:00</common:created-date>
8
+ <common:last-modified-date>2016-04-27T13:22:53.471-06:00</common:last-modified-date>
9
+ <personal-details:content>biography V2.0_rc3</personal-details:content>
10
+ </personal-details:biography>
@@ -0,0 +1,56 @@
1
+ {
2
+ "bulk": [
3
+ {
4
+ "work": {
5
+ "title": {
6
+ "title": {
7
+ "value": "Work # 1"
8
+ },
9
+ "subtitle": null,
10
+ "translated-title": null
11
+ },
12
+ "journal-title": {
13
+ "value": "journal # 1"
14
+ },
15
+ "short-description": null,
16
+ "type": "JOURNAL_ARTICLE",
17
+ "external-ids": {
18
+ "external-id": [{
19
+ "external-id-type": "doi",
20
+ "external-id-value": "ext-id-1",
21
+ "external-id-url": {
22
+ "value": "http://dx.doi.org/ext-id-1"
23
+ },
24
+ "external-id-relationship": "SELF"
25
+ }]
26
+ }
27
+ }
28
+ },
29
+ {
30
+ "work": {
31
+ "title": {
32
+ "title": {
33
+ "value": "Work # 2"
34
+ },
35
+ "subtitle": null,
36
+ "translated-title": null
37
+ },
38
+ "journal-title": {
39
+ "value": "journal # 2"
40
+ },
41
+ "short-description": null,
42
+ "type": "JOURNAL_ARTICLE",
43
+ "external-ids": {
44
+ "external-id": [{
45
+ "external-id-type": "doi",
46
+ "external-id-value": "ext-id-2",
47
+ "external-id-url": {
48
+ "value": "http://dx.doi.org/ext-id-2"
49
+ },
50
+ "external-id-relationship": "SELF"
51
+ }]
52
+ }
53
+ }
54
+ }
55
+ ]
56
+ }