bolognese 2.2.0 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/bolognese/metadata_utils.rb +1 -0
- data/lib/bolognese/readers/citeproc_reader.rb +6 -0
- data/lib/bolognese/readers/crossref_reader.rb +37 -3
- data/lib/bolognese/readers/schema_org_reader.rb +21 -2
- data/lib/bolognese/utils.rb +12 -7
- data/lib/bolognese/version.rb +1 -1
- data/lib/bolognese/writers/schema_org_writer.rb +4 -0
- data/resources/kernel-4/include/datacite-contributorType-v4.xsd +3 -1
- data/resources/kernel-4/include/datacite-dateType-v4.xsd +3 -1
- data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +5 -2
- data/resources/kernel-4/include/datacite-relationType-v4.xsd +7 -3
- data/resources/kernel-4/include/datacite-resourceType-v4.xsd +5 -1
- data/resources/kernel-4/include/datacite-titleType-v4.xsd +1 -1
- data/resources/kernel-4/metadata.xsd +2 -1
- data/resources/kernel-4.6/include/datacite-contributorType-v4.xsd +37 -0
- data/resources/kernel-4.6/include/datacite-dateType-v4.xsd +27 -0
- data/resources/kernel-4.6/include/datacite-descriptionType-v4.xsd +19 -0
- data/resources/kernel-4.6/include/datacite-funderIdentifierType-v4.xsd +16 -0
- data/resources/kernel-4.6/include/datacite-nameType-v4.xsd +10 -0
- data/resources/kernel-4.6/include/datacite-numberType-v4.xsd +12 -0
- data/resources/kernel-4.6/include/datacite-relatedIdentifierType-v4.xsd +37 -0
- data/resources/kernel-4.6/include/datacite-relationType-v4.xsd +57 -0
- data/resources/kernel-4.6/include/datacite-resourceType-v4.xsd +49 -0
- data/resources/kernel-4.6/include/datacite-titleType-v4.xsd +14 -0
- data/resources/kernel-4.6/include/xml.xsd +286 -0
- data/resources/kernel-4.6/metadata.xsd +712 -0
- data/spec/datacite_utils_spec.rb +109 -1
- data/spec/fixtures/citeproc.json +6 -2
- data/spec/fixtures/crossref_schema_4.6_values.xml +183 -0
- data/spec/fixtures/datacite-example-full-v4.6.xml +114 -0
- data/spec/fixtures/schema_org_4.6_attributes.json +108 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_contributors_Translator/supports_Translator_contributorType.yml +71 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_dates_with_Coverage/inserts_date_with_dateType_Coverage.yml +71 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_related_identifiers_CSTR/supports_CSTR_relatedIdentifierType.yml +71 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_related_identifiers_HasTranslation/supports_HasTranslation_relationType.yml +71 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_related_identifiers_RRID/supports_RRID_relatedIdentifierType.yml +71 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_resource_type_with_Award/supports_Award_as_resourceTypeGeneral.yml +71 -0
- data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_resource_type_with_Project/supports_Project_as_resourceTypeGeneral.yml +71 -0
- data/spec/readers/citeproc_reader_spec.rb +1 -0
- data/spec/readers/crossref_reader_spec.rb +31 -0
- data/spec/readers/datacite_reader_spec.rb +41 -0
- data/spec/readers/schema_org_reader_spec.rb +27 -0
- data/spec/writers/citeproc_writer_spec.rb +9 -0
- data/spec/writers/datacite_writer_spec.rb +71 -0
- data/spec/writers/jats_writer_spec.rb +1 -1
- data/spec/writers/schema_org_writer_spec.rb +36 -0
- metadata +24 -2
data/spec/datacite_utils_spec.rb
CHANGED
|
@@ -204,4 +204,112 @@ describe Bolognese::Metadata, vcr: true do
|
|
|
204
204
|
)
|
|
205
205
|
end
|
|
206
206
|
end
|
|
207
|
-
|
|
207
|
+
|
|
208
|
+
### New DataCite 4.6 Features Tests ###
|
|
209
|
+
|
|
210
|
+
context "insert_resource_type with Project" do
|
|
211
|
+
it "supports Project as resourceTypeGeneral" do
|
|
212
|
+
# Mock the `types` hash to include Project
|
|
213
|
+
subject.instance_variable_set(:@types, {
|
|
214
|
+
"resourceTypeGeneral" => "Project",
|
|
215
|
+
"resourceType" => "Research Project"
|
|
216
|
+
})
|
|
217
|
+
|
|
218
|
+
# Generate XML using the insert_resource_type method
|
|
219
|
+
xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_resource_type(xml) }.to_xml
|
|
220
|
+
|
|
221
|
+
response = Maremma.from_xml(xml)
|
|
222
|
+
|
|
223
|
+
# Expect `Project` in resourceTypeGeneral and `Research Project` as the content
|
|
224
|
+
expect(response["resourceType"]).to eq(
|
|
225
|
+
"resourceTypeGeneral" => "Project",
|
|
226
|
+
"__content__" => "Research Project"
|
|
227
|
+
)
|
|
228
|
+
end
|
|
229
|
+
end
|
|
230
|
+
|
|
231
|
+
context "insert_resource_type with Award" do
|
|
232
|
+
it "supports Award as resourceTypeGeneral" do
|
|
233
|
+
# Mock the `types` hash to include Award
|
|
234
|
+
subject.instance_variable_set(:@types, {
|
|
235
|
+
"resourceTypeGeneral" => "Award",
|
|
236
|
+
"resourceType" => "Nobel Prize"
|
|
237
|
+
})
|
|
238
|
+
|
|
239
|
+
# Generate XML using the insert_resource_type method
|
|
240
|
+
xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_resource_type(xml) }.to_xml
|
|
241
|
+
|
|
242
|
+
response = Maremma.from_xml(xml)
|
|
243
|
+
|
|
244
|
+
# Expect `Award` in resourceTypeGeneral and `Nobel Prize` as the content
|
|
245
|
+
expect(response["resourceType"]).to eq(
|
|
246
|
+
"resourceTypeGeneral" => "Award",
|
|
247
|
+
"__content__" => "Nobel Prize"
|
|
248
|
+
)
|
|
249
|
+
end
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
# Test case to insert Coverage DateType (new dateType in DataCite 4.6).
|
|
253
|
+
context "insert_dates with Coverage" do
|
|
254
|
+
it "inserts date with dateType Coverage" do
|
|
255
|
+
subject.dates = [{ "date" => "2021-01-01", "dateType" => "Coverage" }]
|
|
256
|
+
|
|
257
|
+
xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_dates(xml) }.to_xml
|
|
258
|
+
response = Maremma.from_xml(xml)
|
|
259
|
+
dates = response.dig("dates", "date")
|
|
260
|
+
expect(dates).to eq("__content__" => "2021-01-01", "dateType" => "Coverage")
|
|
261
|
+
end
|
|
262
|
+
end
|
|
263
|
+
|
|
264
|
+
# Test case to insert Translator contributor (new contributorType in DataCite 4.6)
|
|
265
|
+
context "insert_contributors Translator" do
|
|
266
|
+
it "supports Translator contributorType" do
|
|
267
|
+
subject.contributors = [
|
|
268
|
+
{ "contributorName" => "John Translator", "contributorType" => "Translator" }
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_contributors(xml) }.to_xml
|
|
272
|
+
response = Maremma.from_xml(xml)
|
|
273
|
+
expect(response.dig("contributors", "contributor", "contributorType")).to eq("Translator")
|
|
274
|
+
end
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
# Test case for RRID (new relatedIdentifierType in DataCite 4.6)
|
|
278
|
+
context "insert_related_identifiers RRID" do
|
|
279
|
+
it "supports RRID relatedIdentifierType" do
|
|
280
|
+
subject.related_identifiers = [
|
|
281
|
+
{ "relatedIdentifier" => "RRID:AB_90755", "relatedIdentifierType" => "RRID", "relationType" => "References" }
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_related_identifiers(xml) }.to_xml
|
|
285
|
+
response = Maremma.from_xml(xml)
|
|
286
|
+
expect(response.dig("relatedIdentifiers", "relatedIdentifier")).to eq("__content__" => "RRID:AB_90755", "relatedIdentifierType" => "RRID", "relationType" => "References")
|
|
287
|
+
end
|
|
288
|
+
end
|
|
289
|
+
|
|
290
|
+
### Test case #2 for adding CSTR ###
|
|
291
|
+
context "insert_related_identifiers CSTR" do
|
|
292
|
+
it "supports CSTR relatedIdentifierType" do
|
|
293
|
+
subject.related_identifiers = [
|
|
294
|
+
{ "relatedIdentifier" => "CSTR:AB_12345", "relatedIdentifierType" => "CSTR", "relationType" => "References" }
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_related_identifiers(xml) }.to_xml
|
|
298
|
+
response = Maremma.from_xml(xml)
|
|
299
|
+
expect(response.dig("relatedIdentifiers", "relatedIdentifier")).to eq("__content__" => "CSTR:AB_12345", "relatedIdentifierType" => "CSTR", "relationType" => "References")
|
|
300
|
+
end
|
|
301
|
+
end
|
|
302
|
+
|
|
303
|
+
# Test case for HasTranslation (new relationType in DataCite 4.6)
|
|
304
|
+
context "insert_related_identifiers HasTranslation" do
|
|
305
|
+
it "supports HasTranslation relationType" do
|
|
306
|
+
subject.related_identifiers = [
|
|
307
|
+
{ "relatedIdentifier" => "10.1234/translated-version", "relatedIdentifierType" => "DOI", "relationType" => "HasTranslation" }
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_related_identifiers(xml) }.to_xml
|
|
311
|
+
response = Maremma.from_xml(xml)
|
|
312
|
+
expect(response.dig("relatedIdentifiers", "relatedIdentifier")).to eq("__content__" => "10.1234/translated-version", "relatedIdentifierType" => "DOI", "relationType" => "HasTranslation")
|
|
313
|
+
end
|
|
314
|
+
end
|
|
315
|
+
end
|
data/spec/fixtures/citeproc.json
CHANGED
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<crossref_result xmlns="http://www.crossref.org/qrschema/3.0" version="3.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.crossref.org/qrschema/3.0 http://www.crossref.org/schemas/crossref_query_output3.0.xsd">
|
|
3
|
+
<query_result>
|
|
4
|
+
<head>
|
|
5
|
+
<doi_batch_id>none</doi_batch_id>
|
|
6
|
+
</head>
|
|
7
|
+
<body>
|
|
8
|
+
<query status="resolved">
|
|
9
|
+
<doi type="journal_article">10.7554/eLife.01567</doi>
|
|
10
|
+
<crm-item name="publisher-name" type="string">eLife Sciences Publications, Ltd</crm-item>
|
|
11
|
+
<crm-item name="prefix-name" type="string">eLife Sciences Publications, Ltd.</crm-item>
|
|
12
|
+
<crm-item name="member-id" type="number">4374</crm-item>
|
|
13
|
+
<crm-item name="citation-id" type="number">67124617</crm-item>
|
|
14
|
+
<crm-item name="journal-id" type="number">189365</crm-item>
|
|
15
|
+
<crm-item name="deposit-timestamp" type="number">20180823133646</crm-item>
|
|
16
|
+
<crm-item name="owner-prefix" type="string">10.7554</crm-item>
|
|
17
|
+
<crm-item name="last-update" type="date">2018-08-23T13:41:49Z</crm-item>
|
|
18
|
+
<crm-item name="created" type="date">2014-02-11T16:29:04Z</crm-item>
|
|
19
|
+
<crm-item name="citedby-count" type="number">13</crm-item>
|
|
20
|
+
<doi_record>
|
|
21
|
+
<crossref xmlns="http://www.crossref.org/xschema/1.1" xsi:schemaLocation="http://www.crossref.org/xschema/1.1 http://doi.crossref.org/schemas/unixref1.1.xsd">
|
|
22
|
+
<journal>
|
|
23
|
+
<journal_metadata language="en">
|
|
24
|
+
<full_title>Journal of Metadata Perfection</full_title>
|
|
25
|
+
<abbrev_title>JOMPer</abbrev_title>
|
|
26
|
+
<doi_data>
|
|
27
|
+
<doi>10.32013/487529</doi>
|
|
28
|
+
<resource>https://www.crossref.org/jomper</resource>
|
|
29
|
+
</doi_data>
|
|
30
|
+
</journal_metadata>
|
|
31
|
+
<journal_issue>
|
|
32
|
+
<publication_date media_type="online">
|
|
33
|
+
<month>08</month>
|
|
34
|
+
<day>13</day>
|
|
35
|
+
<year>2008</year>
|
|
36
|
+
</publication_date>
|
|
37
|
+
<publication_date media_type="print">
|
|
38
|
+
<month>08</month>
|
|
39
|
+
<day>14</day>
|
|
40
|
+
<year>2008</year>
|
|
41
|
+
</publication_date>
|
|
42
|
+
<journal_volume>
|
|
43
|
+
<volume>5</volume>
|
|
44
|
+
</journal_volume>
|
|
45
|
+
<issue>11</issue>
|
|
46
|
+
</journal_issue>
|
|
47
|
+
<journal_article publication_type="full_text">
|
|
48
|
+
<titles>
|
|
49
|
+
<title>Quand vos meilleures métadonnées ne suffisent pas: travailler avec une spécification imparfaite</title>
|
|
50
|
+
<original_language_title language="en">When your best metadata isn't good enough: working with an imperfect specification </original_language_title>
|
|
51
|
+
</titles>
|
|
52
|
+
<contributors>
|
|
53
|
+
<person_name sequence="first" contributor_role="author">
|
|
54
|
+
<given_name>Minerva</given_name>
|
|
55
|
+
<surname>Housecat</surname>
|
|
56
|
+
<affiliation>Crossref University</affiliation>
|
|
57
|
+
<ORCID authenticated="true">https://orcid.org/0000-0002-4011-3590</ORCID>
|
|
58
|
+
</person_name>
|
|
59
|
+
<person_name sequence="additional" contributor_role="author">
|
|
60
|
+
<given_name>Josiah</given_name>
|
|
61
|
+
<surname>Carberry</surname>
|
|
62
|
+
<affiliation>Brown University</affiliation>
|
|
63
|
+
<ORCID authenticated="true">https://orcid.org/0000-0002-1825-0097</ORCID>
|
|
64
|
+
</person_name>
|
|
65
|
+
<person_name contributor_role="editor" sequence="additional">
|
|
66
|
+
<given_name>Ashwini</given_name>
|
|
67
|
+
<surname>Sukale</surname>
|
|
68
|
+
<affiliation>DataCite</affiliation>
|
|
69
|
+
</person_name>
|
|
70
|
+
<person_name contributor_role="translator" sequence="additional">
|
|
71
|
+
<given_name>Cody</given_name>
|
|
72
|
+
<surname>Ross</surname>
|
|
73
|
+
<affiliation>DataCite</affiliation>
|
|
74
|
+
</person_name>
|
|
75
|
+
</contributors>
|
|
76
|
+
<publication_date media_type="online">
|
|
77
|
+
<month>08</month>
|
|
78
|
+
<day>13</day>
|
|
79
|
+
<year>2018</year>
|
|
80
|
+
</publication_date>
|
|
81
|
+
<publication_date media_type="print">
|
|
82
|
+
<month>08</month>
|
|
83
|
+
<day>14</day>
|
|
84
|
+
<year>2018</year>
|
|
85
|
+
</publication_date>
|
|
86
|
+
<acceptance_date>
|
|
87
|
+
<month>05</month>
|
|
88
|
+
<day>21</day>
|
|
89
|
+
<year>2018</year>
|
|
90
|
+
</acceptance_date>
|
|
91
|
+
<pages>
|
|
92
|
+
<first_page>1</first_page>
|
|
93
|
+
<last_page>3</last_page>
|
|
94
|
+
</pages>
|
|
95
|
+
<publisher_item>
|
|
96
|
+
<item_number item_number_type="article_number">2347854-0</item_number>
|
|
97
|
+
</publisher_item>
|
|
98
|
+
<program xmlns="http://www.crossref.org/relations.xsd">
|
|
99
|
+
<related_item>
|
|
100
|
+
<description>English language version</description>
|
|
101
|
+
<intra_work_relation relationship-type="hasTranslation" identifier-type="doi"
|
|
102
|
+
>10.32013/zLl10OQ</intra_work_relation>
|
|
103
|
+
</related_item>
|
|
104
|
+
<related_item>
|
|
105
|
+
<description>Portuguese translation of an article</description>
|
|
106
|
+
<intra_work_relation relationship-type="isTranslationOf" identifier-type="doi">10.5555/original_language</intra_work_relation>
|
|
107
|
+
</related_item>
|
|
108
|
+
</program>
|
|
109
|
+
<archive_locations>
|
|
110
|
+
<archive name="CLOCKSS"/>
|
|
111
|
+
<archive name="Internet Archive"/>
|
|
112
|
+
<archive name="Portico"/>
|
|
113
|
+
<archive name="KB"/>
|
|
114
|
+
</archive_locations>
|
|
115
|
+
<doi_data>
|
|
116
|
+
<doi>10.32013/4859104</doi>
|
|
117
|
+
<resource>https://www.crossref.org/xml-samples/</resource>
|
|
118
|
+
<collection property="crawler-based">
|
|
119
|
+
<item crawler="iParadigms">
|
|
120
|
+
<resource>https://www.crossref.org/faqs.html</resource>
|
|
121
|
+
</item>
|
|
122
|
+
</collection>
|
|
123
|
+
<collection property="text-mining">
|
|
124
|
+
<item>
|
|
125
|
+
<resource content_version="vor" mime_type="text/xml"
|
|
126
|
+
>https://www.crossref.org/example.xml</resource>
|
|
127
|
+
</item>
|
|
128
|
+
</collection>
|
|
129
|
+
<collection property="link-header">
|
|
130
|
+
<item link_header_relationship="dul">
|
|
131
|
+
<resource>http://www.crossref.org/exampleDULendpoint</resource>
|
|
132
|
+
</item>
|
|
133
|
+
</collection>
|
|
134
|
+
</doi_data>
|
|
135
|
+
<citation_list>
|
|
136
|
+
<citation key="ref1">
|
|
137
|
+
<doi>10.1101/144147</doi>
|
|
138
|
+
<unstructured_citation>BioSharing: Harnessing Metadata Standards For The
|
|
139
|
+
Data Commons. Susanna-Assunta Sansone, Alejandra Gonzalez-Beltran,
|
|
140
|
+
Philippe Rocca-Serra, PeterMcQuilton, Massimiliano Izzo, Allyson Lister,
|
|
141
|
+
Milo Thurston. bioRxiv 144147</unstructured_citation>
|
|
142
|
+
</citation>
|
|
143
|
+
<citation key="ref2">
|
|
144
|
+
<doi>10.1515/jdis-2017-0012</doi>
|
|
145
|
+
<unstructured_citation>Greenberg, J. (2017). Big Metadata, Smart Metadata,
|
|
146
|
+
and Metadata Capital: Toward Greater Synergy Between Data Science and
|
|
147
|
+
Metadata, Journal of Data and Information Science, 2(3), 19-36.
|
|
148
|
+
</unstructured_citation>
|
|
149
|
+
</citation>
|
|
150
|
+
<citation key="ref3">
|
|
151
|
+
<doi>10.32013/s4947892</doi>
|
|
152
|
+
</citation>
|
|
153
|
+
<citation key="ref4">
|
|
154
|
+
<doi>10.1108/LHTN-12-2016-0059</doi>
|
|
155
|
+
<unstructured_citation>Jung ran Park, Yuji Tosaka, (2017) “Emerging
|
|
156
|
+
information standards and technologies: cataloging and metadata
|
|
157
|
+
professionals’ perspectives", Library Hi Tech News, Vol. 34 Issue: 4,
|
|
158
|
+
pp.22-26</unstructured_citation>
|
|
159
|
+
</citation>
|
|
160
|
+
<citation key="ref5">
|
|
161
|
+
<journal_title>Information Technology and Libraries</journal_title>
|
|
162
|
+
<author>Park</author>
|
|
163
|
+
<volume>29</volume>
|
|
164
|
+
<issue>3</issue>
|
|
165
|
+
<first_page>104</first_page>
|
|
166
|
+
<cYear>2010</cYear>
|
|
167
|
+
<doi>10.6017/ital.v29i3.3136</doi>
|
|
168
|
+
<article_title>Metadata creation practices in digital repositories and collections: Schemata, selection criteria, and interoperability</article_title>
|
|
169
|
+
</citation>
|
|
170
|
+
<citation key="ref6">
|
|
171
|
+
<unstructured_citation>Riley, J. (2017). Understanding metadata.
|
|
172
|
+
Bethesda,MD: NISO Press.</unstructured_citation>
|
|
173
|
+
</citation>
|
|
174
|
+
</citation_list>
|
|
175
|
+
</journal_article>
|
|
176
|
+
</journal>
|
|
177
|
+
|
|
178
|
+
</crossref>
|
|
179
|
+
</doi_record>
|
|
180
|
+
</query>
|
|
181
|
+
</body>
|
|
182
|
+
</query_result>
|
|
183
|
+
</crossref_result>
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<resource
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xmlns="http://datacite.org/schema/kernel-4"
|
|
5
|
+
xsi:schemaLocation="http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4.6/metadata.xsd">
|
|
6
|
+
|
|
7
|
+
<!-- DOI Identifier -->
|
|
8
|
+
<identifier identifierType="DOI">10.82433/B09Z-4K37</identifier>
|
|
9
|
+
|
|
10
|
+
<!-- Creators -->
|
|
11
|
+
<creators>
|
|
12
|
+
<creator>
|
|
13
|
+
<creatorName nameType="Personal">ExampleFamilyName, ExampleGivenName</creatorName>
|
|
14
|
+
<givenName>ExampleGivenName</givenName>
|
|
15
|
+
<familyName>ExampleFamilyName</familyName>
|
|
16
|
+
<nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org">https://orcid.org/0000-0001-5727-2427</nameIdentifier>
|
|
17
|
+
<affiliation affiliationIdentifier="https://ror.org/04wxnsj81" affiliationIdentifierScheme="ROR" schemeURI="https://ror.org">ExampleAffiliation</affiliation>
|
|
18
|
+
</creator>
|
|
19
|
+
<creator>
|
|
20
|
+
<creatorName xml:lang="en" nameType="Organizational">ExampleOrganization</creatorName>
|
|
21
|
+
<nameIdentifier nameIdentifierScheme="ROR" schemeURI="https://ror.org">https://ror.org/04wxnsj81</nameIdentifier>
|
|
22
|
+
</creator>
|
|
23
|
+
</creators>
|
|
24
|
+
|
|
25
|
+
<!-- Titles -->
|
|
26
|
+
<titles>
|
|
27
|
+
<title xml:lang="en">Example Title</title>
|
|
28
|
+
<title titleType="Subtitle" xml:lang="en">Example Subtitle</title>
|
|
29
|
+
<title titleType="TranslatedTitle" xml:lang="fr">Example TranslatedTitle</title>
|
|
30
|
+
<title titleType="AlternativeTitle" xml:lang="en">Example AlternativeTitle</title>
|
|
31
|
+
</titles>
|
|
32
|
+
|
|
33
|
+
<!-- Publisher -->
|
|
34
|
+
<publisher xml:lang="en" publisherIdentifier="https://ror.org/04z8jg394" publisherIdentifierScheme="ROR" schemeURI="https://ror.org/">Example Publisher</publisher>
|
|
35
|
+
|
|
36
|
+
<!-- Publication Year -->
|
|
37
|
+
<publicationYear>2023</publicationYear>
|
|
38
|
+
|
|
39
|
+
<!-- New resourceTypeGeneral: Project -->
|
|
40
|
+
<resourceType resourceTypeGeneral="Project">Research Project</resourceType>
|
|
41
|
+
|
|
42
|
+
<!-- Subjects -->
|
|
43
|
+
<subjects>
|
|
44
|
+
<subject subjectScheme="Fields of Science and Technology (FOS)" schemeURI="http://www.oecd.org/science/inno" valueURI="http://www.oecd.org/science/inno/38235147.pdf">FOS: Computer and information sciences</subject>
|
|
45
|
+
<subject subjectScheme="Australian and New Zealand Standard Research Classification (ANZSRC), 2020" schemeURI="https://www.abs.gov.au/statistics/classifications/australian-and-new-zealand-standard-research-classification-anzsrc" classificationCode="461001">Digital curation and preservation</subject>
|
|
46
|
+
<subject>Example Subject</subject>
|
|
47
|
+
</subjects>
|
|
48
|
+
|
|
49
|
+
<!-- New ContributorType: Translator -->
|
|
50
|
+
<contributors>
|
|
51
|
+
<contributor contributorType="Translator">
|
|
52
|
+
<contributorName nameType="Personal">Doe, Jane</contributorName>
|
|
53
|
+
<givenName>Jane</givenName>
|
|
54
|
+
<familyName>Doe</familyName>
|
|
55
|
+
<nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org">https://orcid.org/0000-0003-1419-2405</nameIdentifier>
|
|
56
|
+
<affiliation affiliationIdentifier="https://ror.org/04wxnsj81" affiliationIdentifierScheme="ROR" schemeURI="https://ror.org">ExampleAffiliation</affiliation>
|
|
57
|
+
</contributor>
|
|
58
|
+
<contributor contributorType="ContactPerson">
|
|
59
|
+
<contributorName nameType="Personal">Smith, John</contributorName>
|
|
60
|
+
<givenName>John</givenName>
|
|
61
|
+
<familyName>Smith</familyName>
|
|
62
|
+
<affiliation affiliationIdentifier="https://ror.org/04wxnsj81" affiliationIdentifierScheme="ROR" schemeURI="https://ror.org">ExampleAffiliation</affiliation>
|
|
63
|
+
</contributor>
|
|
64
|
+
</contributors>
|
|
65
|
+
|
|
66
|
+
<!-- Dates (Including New dateType "Coverage") -->
|
|
67
|
+
<dates>
|
|
68
|
+
<date dateType="Coverage">2020-01-01</date> <!-- DataCite 4.6: Coverage DateType -->
|
|
69
|
+
<date dateType="Created">2023-01-01</date>
|
|
70
|
+
<date dateType="Issued">2023-01-01</date>
|
|
71
|
+
<date dateType="Submitted">2023-01-01</date>
|
|
72
|
+
<date dateType="Updated">2023-01-01</date>
|
|
73
|
+
</dates>
|
|
74
|
+
|
|
75
|
+
<!-- Related Identifiers (Including CSTR, RRID, HasTranslation) -->
|
|
76
|
+
<relatedIdentifiers>
|
|
77
|
+
<relatedIdentifier relatedIdentifierType="RRID" relationType="References">RRID:AB_90755</relatedIdentifier> <!-- DataCite 4.6: New RRID Identifier -->
|
|
78
|
+
<relatedIdentifier relatedIdentifierType="CSTR" relationType="References">CSTR:AB_12345</relatedIdentifier> <!-- DataCite 4.6: New CSTR Identifier -->
|
|
79
|
+
<relatedIdentifier relatedIdentifierType="DOI" relationType="HasTranslation">10.1234/translated-version</relatedIdentifier> <!-- DataCite 4.6: HasTranslation RelationType -->
|
|
80
|
+
<relatedIdentifier relatedIdentifierType="DOI" relationType="IsTranslationOf">10.1234/other-version</relatedIdentifier> <!-- DataCite 4.6: HasTranslation RelationType -->
|
|
81
|
+
</relatedIdentifiers>
|
|
82
|
+
|
|
83
|
+
<!-- Sizes & Formats -->
|
|
84
|
+
<sizes>
|
|
85
|
+
<size>1 MB</size>
|
|
86
|
+
</sizes>
|
|
87
|
+
<formats>
|
|
88
|
+
<format>application/xml</format>
|
|
89
|
+
</formats>
|
|
90
|
+
|
|
91
|
+
<!-- Version -->
|
|
92
|
+
<version>1</version>
|
|
93
|
+
|
|
94
|
+
<!-- Rights (CC BY 4.0) -->
|
|
95
|
+
<rightsList>
|
|
96
|
+
<rights xml:lang="en" rightsURI="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International</rights>
|
|
97
|
+
</rightsList>
|
|
98
|
+
|
|
99
|
+
<!-- Descriptions (Abstract) -->
|
|
100
|
+
<descriptions>
|
|
101
|
+
<description xml:lang="en" descriptionType="Abstract">This dataset illustrates the use of new DataCite fields, including Project and Award resource types, RRID, CSTR, Translator, and others.</description>
|
|
102
|
+
</descriptions>
|
|
103
|
+
|
|
104
|
+
<!-- GeoLocations Example -->
|
|
105
|
+
<geoLocations>
|
|
106
|
+
<geoLocation>
|
|
107
|
+
<geoLocationPlace>Vancouver, British Columbia, Canada</geoLocationPlace>
|
|
108
|
+
<geoLocationPoint>
|
|
109
|
+
<pointLatitude>49.2827</pointLatitude>
|
|
110
|
+
<pointLongitude>-123.1207</pointLongitude>
|
|
111
|
+
</geoLocationPoint>
|
|
112
|
+
</geoLocation>
|
|
113
|
+
</geoLocations>
|
|
114
|
+
</resource>
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": "http://schema.org",
|
|
3
|
+
"@type": "Project",
|
|
4
|
+
"@id": "https://doi.org/10.82433/b09z-4k37",
|
|
5
|
+
"additionalType": "Research Project",
|
|
6
|
+
"name": "Example Title",
|
|
7
|
+
"author": [
|
|
8
|
+
{
|
|
9
|
+
"name": "ExampleGivenName ExampleFamilyName",
|
|
10
|
+
"givenName": "ExampleGivenName",
|
|
11
|
+
"familyName": "ExampleFamilyName",
|
|
12
|
+
"affiliation": {
|
|
13
|
+
"@type": "Organization",
|
|
14
|
+
"@id": "https://ror.org/04wxnsj81",
|
|
15
|
+
"name": "ExampleAffiliation"
|
|
16
|
+
},
|
|
17
|
+
"@type": "Person",
|
|
18
|
+
"@id": "https://orcid.org/0000-0001-5727-2427"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "ExampleOrganization",
|
|
22
|
+
"@type": "Organization",
|
|
23
|
+
"@id": "https://ror.org/04wxnsj81"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"editor": [
|
|
27
|
+
{
|
|
28
|
+
"name": "Jane Doe",
|
|
29
|
+
"givenName": "Jane",
|
|
30
|
+
"familyName": "Doe",
|
|
31
|
+
"affiliation": {
|
|
32
|
+
"@type": "Organization",
|
|
33
|
+
"@id": "https://ror.org/04wxnsj81",
|
|
34
|
+
"name": "ExampleAffiliation"
|
|
35
|
+
},
|
|
36
|
+
"@type": "Person",
|
|
37
|
+
"@id": "https://orcid.org/0000-0003-1419-2405"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "John Smith",
|
|
41
|
+
"givenName": "John",
|
|
42
|
+
"familyName": "Smith",
|
|
43
|
+
"affiliation": {
|
|
44
|
+
"@type": "Organization",
|
|
45
|
+
"@id": "https://ror.org/04wxnsj81",
|
|
46
|
+
"name": "ExampleAffiliation"
|
|
47
|
+
},
|
|
48
|
+
"@type": "Person"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"translator": {
|
|
52
|
+
"name": "Cody",
|
|
53
|
+
"givenName": "Cody",
|
|
54
|
+
"familyName": "Ross",
|
|
55
|
+
"affiliation": {
|
|
56
|
+
"@type": "Organization",
|
|
57
|
+
"@id": "https://ror.org/04wxnsj81",
|
|
58
|
+
"name": "ExampleAffiliation"
|
|
59
|
+
},
|
|
60
|
+
"@type": "Person",
|
|
61
|
+
"@id": "https://orcid.org/0000-0003-1419-2405"
|
|
62
|
+
},
|
|
63
|
+
"description": "This dataset illustrates the use of new DataCite fields, including Project and Award resource types, RRID, CSTR, Translator, and others.",
|
|
64
|
+
"license": "https://creativecommons.org/licenses/by/4.0/legalcode",
|
|
65
|
+
"version": "1",
|
|
66
|
+
"keywords": "FOS: Computer and information sciences, FOS: Computer and information sciences, Digital curation and preservation, Example Subject",
|
|
67
|
+
"contentSize": "1 MB",
|
|
68
|
+
"encodingFormat": "application/xml",
|
|
69
|
+
"dateCreated": "2023-01-01",
|
|
70
|
+
"datePublished": "2023-01-01",
|
|
71
|
+
"dateModified": "2023-01-01",
|
|
72
|
+
"temporalCoverage": "2020-01-01",
|
|
73
|
+
"spatialCoverage": {
|
|
74
|
+
"@type": "Place",
|
|
75
|
+
"geo": {
|
|
76
|
+
"@type": "GeoCoordinates",
|
|
77
|
+
"address": "Vancouver, British Columbia, Canada",
|
|
78
|
+
"latitude": "49.2827",
|
|
79
|
+
"longitude": "-123.1207"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"citation": [
|
|
83
|
+
{
|
|
84
|
+
"@type": "CreativeWork"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"@type": "CreativeWork"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"workTranslation": {
|
|
91
|
+
"@id": "https://doi.org/10.1234/translated-version",
|
|
92
|
+
"@type": "CreativeWork"
|
|
93
|
+
},
|
|
94
|
+
"translationOfWork": {
|
|
95
|
+
"@id": "https://doi.org/10.1234/other-version",
|
|
96
|
+
"@type": "CreativeWork"
|
|
97
|
+
},
|
|
98
|
+
"schemaVersion": "http://datacite.org/schema/kernel-4",
|
|
99
|
+
"publisher": {
|
|
100
|
+
"@type": "Organization",
|
|
101
|
+
"@id": "https://ror.org/04z8jg394",
|
|
102
|
+
"name": "Example Publisher"
|
|
103
|
+
},
|
|
104
|
+
"provider": {
|
|
105
|
+
"@type": "Organization",
|
|
106
|
+
"name": "datacite"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.datacite.org/dois/10.5061/dryad.8515?include=media,client
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
User-Agent:
|
|
11
|
+
- Mozilla/5.0 (compatible; Maremma/5.0.0; mailto:info@datacite.org)
|
|
12
|
+
Accept:
|
|
13
|
+
- text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5
|
|
14
|
+
Accept-Encoding:
|
|
15
|
+
- gzip,deflate
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Date:
|
|
22
|
+
- Thu, 03 Oct 2024 10:58:34 GMT
|
|
23
|
+
Content-Type:
|
|
24
|
+
- application/json; charset=utf-8
|
|
25
|
+
Connection:
|
|
26
|
+
- keep-alive
|
|
27
|
+
Status:
|
|
28
|
+
- 200 OK
|
|
29
|
+
X-Anonymous-Consumer:
|
|
30
|
+
- 'true'
|
|
31
|
+
Cache-Control:
|
|
32
|
+
- max-age=0, private, must-revalidate
|
|
33
|
+
Vary:
|
|
34
|
+
- Accept-Encoding
|
|
35
|
+
Content-Encoding:
|
|
36
|
+
- gzip
|
|
37
|
+
Referrer-Policy:
|
|
38
|
+
- strict-origin-when-cross-origin
|
|
39
|
+
X-Permitted-Cross-Domain-Policies:
|
|
40
|
+
- none
|
|
41
|
+
X-Xss-Protection:
|
|
42
|
+
- '0'
|
|
43
|
+
X-Request-Id:
|
|
44
|
+
- 40b96a29-8e58-451a-afb9-816a2ca4a85c
|
|
45
|
+
Etag:
|
|
46
|
+
- W/"807f80715dfb8912d986262143d95573"
|
|
47
|
+
X-Frame-Options:
|
|
48
|
+
- SAMEORIGIN
|
|
49
|
+
X-Runtime:
|
|
50
|
+
- '0.034354'
|
|
51
|
+
X-Content-Type-Options:
|
|
52
|
+
- nosniff
|
|
53
|
+
X-Powered-By:
|
|
54
|
+
- Phusion Passenger(R) 6.0.23
|
|
55
|
+
Server:
|
|
56
|
+
- nginx/1.18.0 + Phusion Passenger(R) 6.0.23
|
|
57
|
+
Access-Control-Allow-Credentials:
|
|
58
|
+
- 'true'
|
|
59
|
+
Access-Control-Allow-Methods:
|
|
60
|
+
- GET, POST, PUT, PATCH, DELETE, OPTIONS
|
|
61
|
+
Access-Control-Allow-Headers:
|
|
62
|
+
- Accept,Access-Control-Allow-Origin,Access-Control-Expose-Headers,Access-Control-Allow-Methods,Access-Control-Allow-Headers,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Mx-ReqToken,X-Requested-With
|
|
63
|
+
Access-Control-Expose-Headers:
|
|
64
|
+
- Authorization
|
|
65
|
+
body:
|
|
66
|
+
encoding: ASCII-8BIT
|
|
67
|
+
string: !binary |-
|
|
68
|
+
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
|
|
69
|
+
http_version:
|
|
70
|
+
recorded_at: Thu, 03 Oct 2024 10:58:34 GMT
|
|
71
|
+
recorded_with: VCR 3.0.3
|