bolognese 1.9.12 → 2.0.0

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.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +2 -30
  3. data/.github/workflows/ci.yml +22 -0
  4. data/.github/workflows/pull-request.yml +9 -0
  5. data/.github/workflows/release.yml +7 -22
  6. data/.gitignore +1 -0
  7. data/CHANGELOG.md +71 -0
  8. data/Gemfile.lock +106 -92
  9. data/bolognese.gemspec +4 -3
  10. data/lib/bolognese/author_utils.rb +19 -6
  11. data/lib/bolognese/datacite_utils.rb +50 -36
  12. data/lib/bolognese/doi_utils.rb +4 -0
  13. data/lib/bolognese/metadata.rb +1 -1
  14. data/lib/bolognese/metadata_utils.rb +1 -1
  15. data/lib/bolognese/readers/bibtex_reader.rb +2 -2
  16. data/lib/bolognese/readers/citeproc_reader.rb +1 -1
  17. data/lib/bolognese/readers/codemeta_reader.rb +2 -2
  18. data/lib/bolognese/readers/crosscite_reader.rb +4 -1
  19. data/lib/bolognese/readers/crossref_reader.rb +3 -4
  20. data/lib/bolognese/readers/datacite_json_reader.rb +4 -1
  21. data/lib/bolognese/readers/datacite_reader.rb +34 -11
  22. data/lib/bolognese/readers/npm_reader.rb +1 -1
  23. data/lib/bolognese/readers/ris_reader.rb +2 -2
  24. data/lib/bolognese/readers/schema_org_reader.rb +6 -6
  25. data/lib/bolognese/utils.rb +84 -14
  26. data/lib/bolognese/version.rb +1 -1
  27. data/lib/bolognese/writers/bibtex_writer.rb +1 -1
  28. data/lib/bolognese/writers/codemeta_writer.rb +1 -1
  29. data/lib/bolognese/writers/csv_writer.rb +1 -1
  30. data/lib/bolognese/writers/datacite_json_writer.rb +6 -1
  31. data/lib/bolognese/writers/jats_writer.rb +3 -3
  32. data/lib/bolognese/writers/ris_writer.rb +2 -2
  33. data/lib/bolognese/writers/schema_org_writer.rb +2 -2
  34. data/resources/kernel-4/include/datacite-relationType-v4.xsd +2 -0
  35. data/resources/kernel-4/include/datacite-resourceType-v4.xsd +2 -0
  36. data/resources/kernel-4/metadata.xsd +11 -7
  37. data/resources/kernel-4.5/include/datacite-contributorType-v4.xsd +35 -0
  38. data/resources/kernel-4.5/include/datacite-dateType-v4.xsd +25 -0
  39. data/resources/kernel-4.5/include/datacite-descriptionType-v4.xsd +19 -0
  40. data/resources/kernel-4.5/include/datacite-funderIdentifierType-v4.xsd +16 -0
  41. data/resources/kernel-4.5/include/datacite-nameType-v4.xsd +10 -0
  42. data/resources/kernel-4.5/include/datacite-numberType-v4.xsd +12 -0
  43. data/resources/kernel-4.5/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  44. data/resources/kernel-4.5/include/datacite-relationType-v4.xsd +53 -0
  45. data/resources/kernel-4.5/include/datacite-resourceType-v4.xsd +45 -0
  46. data/resources/kernel-4.5/include/datacite-titleType-v4.xsd +14 -0
  47. data/resources/kernel-4.5/include/xml.xsd +286 -0
  48. data/resources/kernel-4.5/metadata.xsd +711 -0
  49. data/resources/oecd/dfg-mappings.json +1866 -0
  50. data/spec/author_utils_spec.rb +61 -2
  51. data/spec/datacite_utils_spec.rb +30 -1
  52. data/spec/fixtures/citeproc.json +4 -2
  53. data/spec/fixtures/datacite-example-ROR-nameIdentifiers.xml +117 -0
  54. data/spec/fixtures/datacite-example-full-v4.5.xml +255 -0
  55. data/spec/fixtures/datacite-example-nameIdentifier-with-schemeURI.xml +94 -0
  56. data/spec/fixtures/datacite-example-relateditems-with-attributes.xml +61 -0
  57. data/spec/fixtures/datacite-funderIdentifier.xml +20 -0
  58. data/spec/fixtures/datacite-seriesinformation.xml +7 -2
  59. data/spec/fixtures/datacite.json +9 -3
  60. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_related_items/insert.yml +73 -0
  61. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/insert_subjects/insert.yml +32 -14
  62. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid/validate_orcid_sandbox.yml +65 -0
  63. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +65 -0
  64. data/spec/metadata_spec.rb +1 -1
  65. data/spec/readers/bibtex_reader_spec.rb +2 -0
  66. data/spec/readers/citeproc_reader_spec.rb +3 -0
  67. data/spec/readers/codemeta_reader_spec.rb +4 -4
  68. data/spec/readers/crosscite_reader_spec.rb +2 -0
  69. data/spec/readers/crossref_reader_spec.rb +41 -41
  70. data/spec/readers/datacite_json_reader_spec.rb +3 -1
  71. data/spec/readers/datacite_reader_spec.rb +156 -50
  72. data/spec/readers/npm_reader_spec.rb +2 -0
  73. data/spec/readers/ris_reader_spec.rb +3 -0
  74. data/spec/readers/schema_org_reader_spec.rb +11 -11
  75. data/spec/spec_helper.rb +1 -0
  76. data/spec/utils_spec.rb +53 -4
  77. data/spec/writers/crosscite_writer_spec.rb +7 -0
  78. data/spec/writers/datacite_json_writer_spec.rb +38 -0
  79. data/spec/writers/datacite_writer_spec.rb +84 -5
  80. data/spec/writers/jats_writer_spec.rb +8 -0
  81. data/spec/writers/rdf_xml_writer_spec.rb +7 -0
  82. data/spec/writers/turtle_writer_spec.rb +18 -0
  83. metadata +49 -21
@@ -133,7 +133,7 @@ describe Bolognese::Metadata, vcr: true do
133
133
  "familyName" => "Schumacher",
134
134
  "givenName" => "Heinrich Christian",
135
135
  "name" => "Schumacher, Heinrich Christian",
136
- "nameIdentifiers" => [{"nameIdentifier"=>"http://d-nb.info/gnd/118611593", "nameIdentifierScheme"=>"GND", "schemeUri"=>"http://d-nb.info/gnd/"}],
136
+ "nameIdentifiers" => [{"nameIdentifier"=>"118611593", "nameIdentifierScheme"=>"GND", "schemeUri"=>"http://d-nb.info/gnd/"}],
137
137
  "nameType" => "Personal")
138
138
  end
139
139
 
@@ -142,7 +142,7 @@ describe Bolognese::Metadata, vcr: true do
142
142
  subject = Bolognese::Metadata.new(input: input, from: "datacite")
143
143
  meta = Maremma.from_xml(subject.raw).fetch("resource", {})
144
144
  response = subject.get_one_author(meta.dig("creators", "creator"))
145
- expect(response).to eq("nameType"=>"Personal", "name"=>"Dubos, Thomas", "givenName"=>"Thomas", "familyName"=>"Dubos", "affiliation" => [{"name"=>"École Polytechnique Laboratoire de Météorologie Dynamique"}], "nameIdentifiers" => [{"nameIdentifier"=>"http://isni.org/isni/0000 0003 5752 6882", "nameIdentifierScheme"=>"ISNI", "schemeUri"=>"http://isni.org/isni/"}, {"nameIdentifier"=>"https://orcid.org/0000-0003-4514-4211", "nameIdentifierScheme"=>"ORCID", "schemeUri"=>"https://orcid.org"}])
145
+ expect(response).to eq("nameType"=>"Personal", "name"=>"Dubos, Thomas", "givenName"=>"Thomas", "familyName"=>"Dubos", "affiliation" => [{"name"=>"École Polytechnique Laboratoire de Météorologie Dynamique"}], "nameIdentifiers" => [{"nameIdentifier"=>"0000 0003 5752 6882", "nameIdentifierScheme"=>"ISNI", "schemeUri"=>"http://isni.org/isni/"}, {"nameIdentifier"=>"https://orcid.org/0000-0003-4514-4211", "nameIdentifierScheme"=>"ORCID", "schemeUri"=>"https://orcid.org"}])
146
146
  end
147
147
 
148
148
  it "nameType organizational" do
@@ -160,6 +160,65 @@ describe Bolognese::Metadata, vcr: true do
160
160
  end
161
161
  end
162
162
 
163
+ it "has ROR nameIdentifiers" do
164
+ input = fixture_path + 'datacite-example-ROR-nameIdentifiers.xml'
165
+ subject = Bolognese::Metadata.new(input: input, from: "datacite")
166
+ expect(subject.creators[2]).to eq("nameType"=>"Organizational", "name"=>"Gump South Pacific Research Station", "nameIdentifiers"=> [{"nameIdentifier"=>"https://ror.org/04sk0et52", "schemeUri"=>"https://ror.org", "nameIdentifierScheme"=>"ROR"}], "affiliation"=>[])
167
+ expect(subject.creators[3]).to eq("nameType"=>"Organizational", "name"=>"University Of Vic", "nameIdentifiers"=> [{"nameIdentifier"=>"https://ror.org/006zjws59", "schemeUri"=>"https://ror.org", "nameIdentifierScheme"=>"ROR"}], "affiliation"=>[])
168
+ expect(subject.creators[4]).to eq("nameType"=>"Organizational", "name"=>"University Of Kivu", "nameIdentifiers"=> [{"nameIdentifier"=>"https://ror.org/01qfhxr31", "schemeUri"=>"https://ror.org", "nameIdentifierScheme"=>"ROR"}], "affiliation"=>[])
169
+ expect(subject.creators[5]).to eq("nameType"=>"Organizational", "name"=>"សាកលវិទ្យាល័យកម្ពុជា", "nameIdentifiers"=> [{"nameIdentifier"=>"http://ror.org/025e3rc84", "nameIdentifierScheme"=>"RORS"}], "affiliation"=>[])
170
+ expect(subject.creators[6]).to eq("nameType"=>"Organizational", "name"=>"جامعة زاخۆ", "nameIdentifiers"=> [{"nameIdentifier"=>"05sd1pz50", "schemeUri"=>"https://ror.org", "nameIdentifierScheme"=>"RORS"}], "affiliation"=>[])
171
+ expect(subject.contributors.first).to eq("nameType"=>"Organizational", "name"=>" Nawroz University ", "nameIdentifiers"=> [{"nameIdentifier"=>"https://ror.org/04gp75d48", "schemeUri"=>"https://ror.org", "nameIdentifierScheme"=>"ROR"}], "affiliation"=>[], "contributorType"=>"Producer")
172
+ expect(subject.contributors.last).to eq("nameType"=>"Organizational", "name"=>"University Of Greenland (Https://Www.Uni.Gl/)", "nameIdentifiers"=> [{"nameIdentifier"=>"https://ror.org/00t5j6b61", "schemeUri"=>"https://ror.org", "nameIdentifierScheme"=>"ROR"}],"affiliation"=>[], "contributorType"=>"Sponsor")
173
+ end
174
+
175
+ context "affiliationIdentifier" do
176
+ let(:input) { fixture_path + 'datacite-example-ROR-nameIdentifiers.xml' }
177
+ subject { Bolognese::Metadata.new(input: input, from: "datacite") }
178
+
179
+ it "should normalize ROR affiliationIdentifier with and without URL" do
180
+ # without URL inside affiliationIdentifier="05bp8ka77"
181
+ ror_affiliater0 = subject.creators[0]["affiliation"].select { |r| r["affiliationIdentifierScheme"] == "ROR" }
182
+ expect(ror_affiliater0[0]["affiliationIdentifier"]).to eq("https://ror.org/05bp8ka77")
183
+ # with URL "affiliationIdentifier"=>"https://ror.org/05bp8ka05"
184
+ ror_affiliater1 = subject.creators[1]["affiliation"].select { |r| r["affiliationIdentifierScheme"] == "ROR" }
185
+ expect(ror_affiliater1[0]["affiliationIdentifier"]).to eq("https://ror.org/05bp8ka05")
186
+ end
187
+
188
+ it "should normalize the valid ORCID nameIdentifier to URL with schemeURI" do
189
+ # with "schemeURI"
190
+ # ORICD normalization 0000-0001-9998-0117 => https://orcid.org/0000-0001-9998-0117
191
+ expect(subject.creators[0]["nameIdentifiers"]).to eq([{"nameIdentifier"=>"https://orcid.org/0000-0001-9998-0117", "schemeUri"=>"https://orcid.org", "nameIdentifierScheme"=>"ORCID"}])
192
+ end
193
+
194
+ it "should normalize the valid ORCID nameIdentifier to URL without schemeURI" do
195
+ # without "schemeURI"
196
+ # ORICD normalization 0000-0001-9998-0117 => https://orcid.org/0000-0001-9998-0117
197
+ expect(subject.creators[7]["nameIdentifiers"]).to eq([{"nameIdentifier"=>"https://orcid.org/0000-0001-9998-0117", "schemeUri"=>"https://orcid.org", "nameIdentifierScheme"=>"ORCID"}])
198
+ end
199
+
200
+ it "should keep nameIdentifier URL after normalization" do
201
+ # ORICD normalization https://orcid.org/0000-0001-9998-0114 => https://orcid.org/0000-0001-9998-0114
202
+ expect(subject.creators[1]["nameIdentifiers"]).to eq([{"nameIdentifier"=>"https://orcid.org/0000-0001-9998-0114", "schemeUri"=>"https://orcid.org", "nameIdentifierScheme"=>"ORCID"}])
203
+ end
204
+
205
+ it "should sanitize valid ORCID id/URL before normalization" do
206
+ #" 0000-0001-9998-0118 ", # Valid ORCID with leading/trailing spaces
207
+ expect(subject.creators[8]["nameIdentifiers"]).to eq([{"nameIdentifier"=>"https://orcid.org/0000-0001-9998-0118", "schemeUri"=>"https://orcid.org", "nameIdentifierScheme"=>"ORCID"}])
208
+ end
209
+
210
+ it "should parse non ROR schema's without normalizing them" do
211
+ input = fixture_path + 'datacite-example-ROR-nameIdentifiers.xml'
212
+ subject = Bolognese::Metadata.new(input: input, from: "datacite")
213
+ # without "schemeURI"
214
+ grid_affiliater0 = subject.creators[0]["affiliation"].select { |r| r["affiliationIdentifierScheme"] == "GRID" }
215
+ expect(grid_affiliater0[0]["affiliationIdentifier"]).to eq("grid.268117.b")
216
+ # with "schemeURI"=>"https://grid.ac/institutes/"
217
+ grid_affiliater1 = subject.creators[1]["affiliation"].select { |r| r["affiliationIdentifierScheme"] == "GRID" }
218
+ expect(grid_affiliater1[0]["affiliationIdentifier"]).to eq("https://grid.ac/institutes/grid.268117.b")
219
+ end
220
+ end
221
+
163
222
  context "authors_as_string" do
164
223
  let(:author_with_organization) { [{"type"=>"Person",
165
224
  "id"=>"http://orcid.org/0000-0003-0077-4738",
@@ -99,9 +99,13 @@ describe Bolognese::Metadata, vcr: true do
99
99
 
100
100
  context "insert_subjects" do
101
101
  it "insert" do
102
+ input = "https://doi.org/10.5878/xyad-9f70"
103
+ subject = Bolognese::Metadata.new(input: input, from: "datacite")
102
104
  xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_subjects(xml) }.to_xml
103
105
  response = Maremma.from_xml(xml)
104
- expect(response.dig("subjects", "subject")).to eq(["Plasmodium", "malaria", "taxonomy", "mitochondrial genome", "Parasites"])
106
+ # It should preserve the classificationCode
107
+ expect(response.dig("subjects", "subject")[0]["classificationCode"]).to eq("a046a1ec-a4d1-4777-8705-3a17548f1969")
108
+ expect(response.dig("subjects", "subject")[0]).to eq({"subjectScheme"=>"ELSST", "valueURI"=>"https://elsst.cessda.eu/id/a046a1ec-a4d1-4777-8705-3a17548f1969", "classificationCode"=>"a046a1ec-a4d1-4777-8705-3a17548f1969", "xml:lang"=>"en", "__content__"=>"decision making"})
105
109
  end
106
110
  end
107
111
 
@@ -175,4 +179,29 @@ describe Bolognese::Metadata, vcr: true do
175
179
  expect(response.dig("descriptions", "description")).to eq("descriptionType" => "Abstract", "__content__" => "Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...")
176
180
  end
177
181
  end
182
+
183
+ context "insert_related_items" do
184
+ let(:input) { IO.read(fixture_path + 'datacite-example-relateditems.xml') }
185
+ it "insert" do
186
+ subject = Bolognese::Metadata.new(input: input, from: "datacite")
187
+ xml = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') { |xml| subject.insert_related_items(xml) }.to_xml
188
+ response = Maremma.from_xml(xml)
189
+ expect(response.dig("relatedItems", "relatedItem")).to eq(
190
+ "relationType" => "IsPublishedIn",
191
+ "relatedItemType" => "Journal",
192
+ "relatedItemIdentifier" => {"__content__"=>"10.5072/john-smiths-1234", "relatedItemIdentifierType"=>"DOI", "relatedMetadataScheme"=>"citeproc+json", "schemeType"=>"URL", "schemeURI"=>"https://github.com/citation-style-language/schema/raw/master/csl-data.json"},
193
+ "creators" => {"creator"=>{"creatorName"=>{"__content__"=>"Smith, John", "nameType"=>"Personal"}, "familyName"=>"Smith", "givenName"=>"John"}},
194
+ "titles" => {"title"=>["Understanding the fictional John Smith", {"__content__"=>"A detailed look", "titleType"=>"Subtitle"}]},
195
+ "publicationYear" => "1776",
196
+ "volume" => "776",
197
+ "issue" => "1",
198
+ "number" => {"__content__"=>"1", "numberType"=>"Chapter"},
199
+ "firstPage" => "50",
200
+ "lastPage" => "60",
201
+ "publisher" => "Example Inc",
202
+ "edition" => "1",
203
+ "contributors" => {"contributor"=>{"contributorName"=>"Hallett, Richard", "contributorType"=>"ProjectLeader", "familyName"=>"Hallett", "givenName"=>"Richard"}}
204
+ )
205
+ end
206
+ end
178
207
  end
@@ -25,6 +25,8 @@
25
25
  },
26
26
  "author": [{
27
27
  "family": "Fenner",
28
- "given": "Martin"
29
- }]
28
+ "given": "Martin",
29
+ "literal": "Fenner, Martin"
30
+ }
31
+ ]
30
32
  }
@@ -0,0 +1,117 @@
1
+ <?xml version="1.0"?>
2
+ <resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xmlns="http://datacite.org/schema/kernel-4" xsi:schemaLocation="http://datacite.org/schema/kernel-%s http://schema.datacite.org/meta/kernel-4/metadata.xsd">
4
+ <identifier identifierType="DOI">10.48321/D1Z60Q</identifier>
5
+ <creators>
6
+ <creator>
7
+ <creatorName nameType="Personal">Ashwini Sukale</creatorName>
8
+ <nameIdentifier schemeURI="https://orcid.org/" nameIdentifierScheme="ORCID">0000-0001-9998-0117</nameIdentifier>
9
+ <affiliation affiliationIdentifier="05bp8ka77" affiliationIdentifierScheme="ROR"> Metadata Game Changers </affiliation>
10
+ <affiliation affiliationIdentifier="grid.268117.b" affiliationIdentifierScheme="GRID">Wesleyan University</affiliation>
11
+ </creator>
12
+ <creator>
13
+ <creatorName nameType="Personal">Erin Robinson</creatorName>
14
+ <nameIdentifier schemeURI="https://orcid.org/" nameIdentifierScheme="ORCID">https://orcid.org/0000-0001-9998-0114</nameIdentifier>
15
+ <affiliation schemeURI="https://ror.org" affiliationIdentifier="https://ror.org/05bp8ka05" affiliationIdentifierScheme="ROR"> Metadata Game Changers </affiliation>
16
+ <affiliation affiliationIdentifier="grid.268117.b" affiliationIdentifierScheme="GRID" schemeURI="https://grid.ac/institutes/">Wesleyan University</affiliation>
17
+ </creator>
18
+ <creator>
19
+ <creatorName nameType="Organizational">Gump South Pacific Research Station</creatorName>
20
+ <nameIdentifier nameIdentifierScheme="ROR" schemeURI="https://ror.org/">https://ror.org/04sk0et52</nameIdentifier>
21
+ </creator>
22
+ <creator>
23
+ <creatorName nameType="Organizational">University of Vic</creatorName>
24
+ <nameIdentifier nameIdentifierScheme="ROR" schemeURI="https://ror.org">006zjws59</nameIdentifier>
25
+ </creator>
26
+ <creator>
27
+ <creatorName nameType="Organizational">University of Kivu</creatorName>
28
+ <nameIdentifier nameIdentifierScheme="ROR">http://ror.org/01qfhxr31</nameIdentifier>
29
+ </creator>
30
+ <creator>
31
+ <creatorName nameType="Organizational">សាកលវិទ្យាល័យកម្ពុជា</creatorName>
32
+ <nameIdentifier nameIdentifierScheme="RORS">http://ror.org/025e3rc84</nameIdentifier>
33
+ </creator>
34
+ <creator>
35
+ <creatorName nameType="Organizational">جامعة زاخۆ</creatorName>
36
+ <nameIdentifier nameIdentifierScheme="RORS" schemeURI="https://ror.org">05sd1pz50</nameIdentifier>
37
+ </creator>
38
+ <creator>
39
+ <creatorName nameType="Personal">Ashwini S</creatorName>
40
+ <nameIdentifier nameIdentifierScheme="ORCID">0000-0001-9998-0117</nameIdentifier>
41
+ </creator>
42
+ <creator>
43
+ <creatorName nameType="Personal">Mike B</creatorName>
44
+ <nameIdentifier nameIdentifierScheme="ORCID"> 0000-0001-9998-0118 </nameIdentifier>
45
+ </creator>
46
+ </creators>
47
+ <titles>
48
+ <title xml:lang="en-US">Genomic Standards Consortium (GSC) Island Sampling Day: Moorea Reef to Ridges Genomic Transect</title>
49
+ </titles>
50
+ <publisher xml:lang="en-US">DMPHub</publisher>
51
+ <publicationYear>2022</publicationYear>
52
+ <contributors>
53
+ <contributor contributorType="Producer">
54
+ <contributorName nameType="Organizational"> Nawroz University </contributorName>
55
+ <nameIdentifier nameIdentifierScheme="ROR">04gp75d48</nameIdentifier>
56
+ </contributor>
57
+ <contributor contributorType="ProjectLeader">
58
+ <contributorName nameType="Personal">Neil Davies</contributorName>
59
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org/">https://orcid.org/0000-0001-8085-5014</nameIdentifier>
60
+ <affiliation affiliationIdentifier="https://ror.org/01an7q238" affiliationIdentifierScheme="ROR"> University of California, Berkeley </affiliation>
61
+ </contributor>
62
+ <contributor contributorType="ProjectLeader">
63
+ <contributorName nameType="Personal">Ramona Walls</contributorName>
64
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org/">https://orcid.org/0000-0001-8815-0078</nameIdentifier>
65
+ <affiliation affiliationIdentifier="https://ror.org/03m2x1q45" affiliationIdentifierScheme="ROR"> University of Arizona </affiliation>
66
+ </contributor>
67
+ <contributor contributorType="ProjectLeader">
68
+ <contributorName nameType="Personal">Serge Planes</contributorName>
69
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org/">https://orcid.org/0000-0002-5689-5371</nameIdentifier>
70
+ <affiliation affiliationIdentifier="https://ror.org/02feahw73" affiliationIdentifierScheme="ROR"> French National Centre for Scientific Research </affiliation>
71
+ </contributor>
72
+ <contributor contributorType="ProjectLeader">
73
+ <contributorName nameType="Personal">Chris Meyer</contributorName>
74
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org/">https://orcid.org/0000-0003-2501-7952</nameIdentifier>
75
+ <affiliation affiliationIdentifier="https://ror.org/01pp8nd67" affiliationIdentifierScheme="ROR"> Smithsonian Institution </affiliation>
76
+ </contributor>
77
+ <contributor contributorType="ProjectLeader">
78
+ <contributorName nameType="Personal">Lynn Schriml</contributorName>
79
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org/">https://orcid.org/0000-0001-8910-9851</nameIdentifier>
80
+ <affiliation affiliationIdentifier="https://ror.org/04rq5mt64" affiliationIdentifierScheme="ROR"> University of Maryland, Baltimore </affiliation>
81
+ </contributor>
82
+ <contributor contributorType="ProjectMember">
83
+ <contributorName nameType="Personal">Scott Tighe</contributorName>
84
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org/">https://orcid.org/0000-0002-3988-0741</nameIdentifier>
85
+ <affiliation affiliationIdentifier="https://ror.org/0155zta11" affiliationIdentifierScheme="ROR"> University of Vermont </affiliation>
86
+ </contributor>
87
+ <contributor contributorType="ProjectMember">
88
+ <contributorName nameType="Personal">Pier Luigi Buttigieg</contributorName>
89
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org/">https://orcid.org/0000-0002-4366-3088</nameIdentifier>
90
+ <affiliation affiliationIdentifier="https://ror.org/02h2x0161" affiliationIdentifierScheme="ROR"> GEOMAR Helmholtz Centre for Ocean Research Kiel </affiliation>
91
+ </contributor>
92
+ <contributor contributorType="ProjectMember">
93
+ <contributorName nameType="Personal">Raïssa Meyer</contributorName>
94
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org/">https://orcid.org/0000-0002-2996-719X</nameIdentifier>
95
+ <affiliation affiliationIdentifier="https://ror.org/032e6b942" affiliationIdentifierScheme="ROR"> Alfred Wegener Institute for Polar and Marine Research </affiliation>
96
+ </contributor>
97
+ <contributor contributorType="Sponsor">
98
+ <contributorName nameType="Organizational">University of Greenland (https://www.uni.gl/)</contributorName>
99
+ <nameIdentifier nameIdentifierScheme="ROR" schemeURI="https://ror.org/">https://ror.org/00t5j6b61</nameIdentifier>
100
+ </contributor>
101
+ </contributors>
102
+ <language>en-US</language>
103
+ <resourceType resourceTypeGeneral="OutputManagementPlan">Data Management Plan</resourceType>
104
+ <descriptions>
105
+ <description xml:lang="en-US" descriptionType="Abstract"> &lt;p&gt;Here we describe a project that supports the mission of the Genomic Standards Consortium (GSC) and contributes to the “Ocean Biomolecular Observations Network” (OBON) and the “Ocean Best Practice System” (OBPS - Omics Task Team), flagship programs of the UN Ocean Decade of Ocean Science for Sustainable Development. The project serves as a test case for two related infrastructure projects that aim to improve standards, policies, and best practices in sample collection: Sampling Nature (SN) Research Coordination Network and the Internet of Samples (iSamples).&lt;/p&gt; &lt;p&gt;&lt;strong&gt;The project’s primary goal (first paper) is methodologica&lt;/strong&gt;l: (i) to demonstrate the value of genomic standards for both genomic research and secondary interdisciplinary research, (ii) to highlight the importance of data curation workflows that follow FAIR+CARE principles maximizing the potential for appropriate reuse of data and material samples, (iii) to illustrate the challenges that remain in implementing those standards - including ethical, legal, and social aspects, and (iv) to demonstrate some of the tools, infrastructures, and best-practices available for overcoming these challenges. This paper will include all the elements of a data paper (primary publication of the initial data collected), but with broader discussion around it as a use case for metadata standards and best practices in multi-omic sampling.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;The project’s secondary goal (second paper) is to address research questions including&lt;/strong&gt;: (1) To what extent can one day of environmental sampling, and subsequent multi-omic analyses, characterize the ecological state of an island (coupled marine-terrestrial ecosystem)? (2) To what extent might such surveys serve as baselines for futuromic study (future analysis of biomolecules from the material samples archived), and (3) if repeated, could these surveys help address long-term changes in genomic biodiversity? (4) How does marine and terrestrial eDNA change across a transect? Moorea is one of the most well-described biotas in the world and has one of the longest and most intensive time-series of ecological data, particularly for coral reef ecosystems. It thus serves as a powerful calibration site for such a study.&lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;strong&gt;The project’s broader impact goal is public outreach &lt;/strong&gt;– if possible engage local citizen scientists/schools, ideally through Fare Natura (ecomuseum at entrance to the Opunohu Valley. (Also perhaps local Associations that might be interested, e.g., Te Pu Atitia). Sampling Nature will produce an outreach videos based on this Island Sampling Day.&lt;/p&gt; </description>
106
+ </descriptions>
107
+ <fundingReferences>
108
+ <fundingReference>
109
+ <funderName>Genomic Standards Consortium</funderName>
110
+ </fundingReference>
111
+ </fundingReferences>
112
+ <relatedIdentifiers>
113
+ <relatedIdentifier relationType="IsMetadataFor" relatedIdentifierType="URL"> https://dmptool.org/api/v2/plans/74309.pdf </relatedIdentifier>
114
+ <relatedIdentifier relationType="Cites" relatedIdentifierType="URL"> https://n2t.net/ark:/21547/EBW2 </relatedIdentifier>
115
+ <relatedIdentifier relationType="Cites" relatedIdentifierType="URL"> https://docs.google.com/document/d/1EYgEEUroMBiTNc5Px11_44G-B17JtTgyssyNkK3hV_U/edit#heading=h.ckwz8v2yry1q </relatedIdentifier>
116
+ </relatedIdentifiers>
117
+ </resource>
@@ -0,0 +1,255 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Example with all properties -->
3
+ <resource
4
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
+ xmlns="http://datacite.org/schema/kernel-4" xsi:schemaLocation="http://datacite.org/schema/kernel-4 ../metadata.xsd">
6
+ <identifier identifierType="DOI">10.82433/B09Z-4K37</identifier>
7
+ <creators>
8
+ <creator>
9
+ <creatorName nameType="Personal">ExampleFamilyName, ExampleGivenName</creatorName>
10
+ <givenName>ExampleGivenName</givenName>
11
+ <familyName>ExampleFamilyName</familyName>
12
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org">https://orcid.org/0000-0001-5727-2427</nameIdentifier>
13
+ <affiliation affiliationIdentifier="https://ror.org/04wxnsj81" affiliationIdentifierScheme="ROR" schemeURI="https://ror.org">ExampleAffiliation</affiliation>
14
+ </creator>
15
+ <creator>
16
+ <creatorName xml:lang="en" nameType="Organizational">ExampleOrganization</creatorName>
17
+ <nameIdentifier nameIdentifierScheme="ROR" schemeURI="https://ror.org">https://ror.org/04wxnsj81</nameIdentifier>
18
+ </creator>
19
+ </creators>
20
+ <titles>
21
+ <title xml:lang="en">Example Title</title>
22
+ <title titleType="Subtitle" xml:lang="en">Example Subtitle</title>
23
+ <title titleType="TranslatedTitle" xml:lang="fr">Example TranslatedTitle</title>
24
+ <title titleType="AlternativeTitle" xml:lang="en">Example AlternativeTitle</title>
25
+ </titles>
26
+ <publisher xml:lang="en" publisherIdentifier="https://ror.org/04z8jg394" publisherIdentifierScheme="ROR" schemeURI="https://ror.org/">Example Publisher</publisher>
27
+ <publicationYear>2023</publicationYear>
28
+ <resourceType resourceTypeGeneral="Dataset">Example ResourceType</resourceType>
29
+ <subjects>
30
+ <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>
31
+ <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>
32
+ <subject>Example Subject</subject>
33
+ </subjects>
34
+ <contributors>
35
+ <contributor contributorType="ContactPerson">
36
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
37
+ <givenName>ExampleGivenName</givenName>
38
+ <familyName>ExampleFamilyName</familyName>
39
+ <nameIdentifier nameIdentifierScheme="ORCID" schemeURI="https://orcid.org">https://orcid.org/0000-0001-5727-2427/</nameIdentifier>
40
+ <affiliation affiliationIdentifier="https://ror.org/04wxnsj81" affiliationIdentifierScheme="ROR" schemeURI="https://ror.org">ExampleAffiliation</affiliation>
41
+ </contributor>
42
+ <contributor contributorType="DataCollector">
43
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
44
+ </contributor>
45
+ <contributor contributorType="DataCurator">
46
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
47
+ </contributor>
48
+ <contributor contributorType="DataManager">
49
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
50
+ </contributor>
51
+ <contributor contributorType="Distributor">
52
+ <contributorName nameType="Organizational">ExampleOrganization</contributorName>
53
+ </contributor>
54
+ <contributor contributorType="Editor">
55
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
56
+ </contributor>
57
+ <contributor contributorType="HostingInstitution">
58
+ <contributorName nameType="Organizational">ExampleOrganization</contributorName>
59
+ </contributor>
60
+ <contributor contributorType="Producer">
61
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
62
+ </contributor>
63
+ <contributor contributorType="ProjectLeader">
64
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
65
+ </contributor>
66
+ <contributor contributorType="ProjectManager">
67
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
68
+ </contributor>
69
+ <contributor contributorType="ProjectMember">
70
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
71
+ </contributor>
72
+ <contributor contributorType="RegistrationAgency">
73
+ <contributorName nameType="Organizational">DataCite</contributorName>
74
+ </contributor>
75
+ <contributor contributorType="RegistrationAuthority">
76
+ <contributorName nameType="Organizational">International DOI Foundation</contributorName>
77
+ </contributor>
78
+ <contributor contributorType="RelatedPerson">
79
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
80
+ </contributor>
81
+ <contributor contributorType="Researcher">
82
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
83
+ </contributor>
84
+ <contributor contributorType="ResearchGroup">
85
+ <contributorName>ExampleContributor</contributorName>
86
+ </contributor>
87
+ <contributor contributorType="RightsHolder">
88
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
89
+ </contributor>
90
+ <contributor contributorType="Sponsor">
91
+ <contributorName>ExampleContributor</contributorName>
92
+ </contributor>
93
+ <contributor contributorType="Supervisor">
94
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
95
+ </contributor>
96
+ <contributor contributorType="WorkPackageLeader">
97
+ <contributorName nameType="Organizational">ExampleOrganization</contributorName>
98
+ </contributor>
99
+ <contributor contributorType="Other">
100
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
101
+ </contributor>
102
+ </contributors>
103
+ <dates>
104
+ <date dateType="Accepted">2023-01-01</date>
105
+ <date dateType="Available">2023-01-01</date>
106
+ <date dateType="Copyrighted">2023-01-01</date>
107
+ <date dateType="Collected">2022-01-01/2022-12-31</date>
108
+ <date dateType="Created">2023-01-01</date>
109
+ <date dateType="Issued">2023-01-01</date>
110
+ <date dateType="Submitted">2023-01-01</date>
111
+ <date dateType="Updated">2023-01-01</date>
112
+ <date dateType="Valid">2023-01-01</date>
113
+ <date dateType="Withdrawn">2023-01-01</date>
114
+ <date dateType="Other" dateInformation="ExampleDateInformation">2023-01-01</date>
115
+ </dates>
116
+ <language>en</language>
117
+ <alternateIdentifiers>
118
+ <alternateIdentifier alternateIdentifierType="Local accession number">12345</alternateIdentifier>
119
+ </alternateIdentifiers>
120
+ <relatedIdentifiers>
121
+ <relatedIdentifier relatedIdentifierType="ARK" relationType="IsCitedBy" resourceTypeGeneral="Audiovisual">ark:/13030/tqb3kh97gh8w</relatedIdentifier>
122
+ <relatedIdentifier relatedIdentifierType="arXiv" relationType="Cites" resourceTypeGeneral="Book">arXiv:0706.0001</relatedIdentifier>
123
+ <relatedIdentifier relatedIdentifierType="bibcode" relationType="IsSupplementTo" resourceTypeGeneral="BookChapter">2018AGUFM.A24K..07S</relatedIdentifier>
124
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsSupplementedBy" resourceTypeGeneral="Collection">10.1016/j.epsl.2011.11.037</relatedIdentifier>
125
+ <relatedIdentifier relatedIdentifierType="EAN13" relationType="IsContinuedBy" resourceTypeGeneral="ComputationalNotebook">9783468111242</relatedIdentifier>
126
+ <relatedIdentifier relatedIdentifierType="EISSN" relationType="Continues" resourceTypeGeneral="ConferencePaper">1562-6865</relatedIdentifier>
127
+ <relatedIdentifier relatedIdentifierType="Handle" relationType="Describes" resourceTypeGeneral="ConferenceProceeding">10013/epic.10033</relatedIdentifier>
128
+ <relatedIdentifier relatedIdentifierType="IGSN" relationType="IsDescribedBy" resourceTypeGeneral="DataPaper">IECUR0097</relatedIdentifier>
129
+ <relatedIdentifier relatedIdentifierType="ISBN" relationType="HasMetadata" resourceTypeGeneral="Dataset">978-3-905673-82-1</relatedIdentifier>
130
+ <relatedIdentifier relatedIdentifierType="ISSN" relationType="IsMetadataFor" resourceTypeGeneral="Dissertation">0077-5606</relatedIdentifier>
131
+ <relatedIdentifier relatedIdentifierType="ISTC" relationType="HasVersion" resourceTypeGeneral="Event">0A9 2002 12B4A105 7</relatedIdentifier>
132
+ <relatedIdentifier relatedIdentifierType="LISSN" relationType="IsVersionOf" resourceTypeGeneral="Image">1188-1534</relatedIdentifier>
133
+ <relatedIdentifier relatedIdentifierType="LSID" relationType="IsNewVersionOf" resourceTypeGeneral="InteractiveResource">urn:lsid:ubio.org:namebank:11815</relatedIdentifier>
134
+ <relatedIdentifier relatedIdentifierType="PMID" relationType="IsPreviousVersionOf" resourceTypeGeneral="Journal">12082125</relatedIdentifier>
135
+ <relatedIdentifier relatedIdentifierType="PURL" relationType="IsPartOf" resourceTypeGeneral="JournalArticle">http://purl.oclc.org/foo/bar</relatedIdentifier>
136
+ <relatedIdentifier relatedIdentifierType="UPC" relationType="HasPart" resourceTypeGeneral="Model">123456789999</relatedIdentifier>
137
+ <relatedIdentifier relatedIdentifierType="URL" relationType="IsPublishedIn" resourceTypeGeneral="OutputManagementPlan">http://www.heatflow.und.edu/index2.html</relatedIdentifier>
138
+ <relatedIdentifier relatedIdentifierType="URN" relationType="IsReferencedBy" resourceTypeGeneral="PeerReview">urn:nbn:de:101:1-201102033592</relatedIdentifier>
139
+ <relatedIdentifier relatedIdentifierType="w3id" relationType="References" resourceTypeGeneral="PhysicalObject">https://w3id.org/games/spec/coil#Coil_Bomb_Die_Of_Age</relatedIdentifier>
140
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsDocumentedBy" resourceTypeGeneral="Preprint">10.1016/j.epsl.2011.11.037</relatedIdentifier>
141
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="Documents" resourceTypeGeneral="Report">10.1016/j.epsl.2011.11.037</relatedIdentifier>
142
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsCompiledBy" resourceTypeGeneral="Service">10.1016/j.epsl.2011.11.037</relatedIdentifier>
143
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="Compiles" resourceTypeGeneral="Software">10.1016/j.epsl.2011.11.037</relatedIdentifier>
144
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsVariantFormOf" resourceTypeGeneral="Sound">10.1016/j.epsl.2011.11.037</relatedIdentifier>
145
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsOriginalFormOf" resourceTypeGeneral="Standard">10.1016/j.epsl.2011.11.037</relatedIdentifier>
146
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsIdenticalTo" resourceTypeGeneral="Text">10.1016/j.epsl.2011.11.037</relatedIdentifier>
147
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsReviewedBy" resourceTypeGeneral="Workflow">10.1016/j.epsl.2011.11.037</relatedIdentifier>
148
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="Reviews" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
149
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsDerivedFrom" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
150
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsSourceOf" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
151
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsRequiredBy" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
152
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="Requires" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
153
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="Obsoletes" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
154
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsObsoletedBy" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
155
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="Collects" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
156
+ <relatedIdentifier relatedIdentifierType="DOI" relationType="IsCollectedBy" resourceTypeGeneral="Other">10.1016/j.epsl.2011.11.037</relatedIdentifier>
157
+ </relatedIdentifiers>
158
+ <sizes>
159
+ <size>1 MB</size>
160
+ <size>90 pages</size>
161
+ </sizes>
162
+ <formats>
163
+ <format>application/xml</format>
164
+ <format>text/plain</format>
165
+ </formats>
166
+ <version>1</version>
167
+ <rightsList>
168
+ <rights xml:lang="en" schemeURI="https://spdx.org/licenses/" rightsIdentifierScheme="SPDX" rightsIdentifier="CC-BY-4.0" rightsURI="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International</rights>
169
+ </rightsList>
170
+ <descriptions>
171
+ <description xml:lang="en" descriptionType="Abstract">Example Abstract</description>
172
+ <description xml:lang="en" descriptionType="Methods">Example Methods</description>
173
+ <description xml:lang="en" descriptionType="SeriesInformation">Example SeriesInformation</description>
174
+ <description xml:lang="en" descriptionType="TableOfContents">Example TableOfContents</description>
175
+ <description xml:lang="en" descriptionType="TechnicalInfo">Example TechnicalInfo</description>
176
+ <description xml:lang="en" descriptionType="Other">Example Other</description>
177
+ </descriptions>
178
+ <geoLocations>
179
+ <geoLocation>
180
+ <geoLocationPlace>Vancouver, British Columbia, Canada</geoLocationPlace>
181
+ <geoLocationPoint>
182
+ <pointLatitude>49.2827</pointLatitude>
183
+ <pointLongitude>-123.1207</pointLongitude>
184
+ </geoLocationPoint>
185
+ <geoLocationBox>
186
+ <westBoundLongitude>-123.27</westBoundLongitude>
187
+ <eastBoundLongitude>-123.02</eastBoundLongitude>
188
+ <southBoundLatitude>49.195</southBoundLatitude>
189
+ <northBoundLatitude>49.315</northBoundLatitude>
190
+ </geoLocationBox>
191
+ <geoLocationPolygon>
192
+ <polygonPoint>
193
+ <pointLatitude>41.991</pointLatitude>
194
+ <pointLongitude>-71.032</pointLongitude>
195
+ </polygonPoint>
196
+ <polygonPoint>
197
+ <pointLatitude>42.893</pointLatitude>
198
+ <pointLongitude>-69.622</pointLongitude>
199
+ </polygonPoint>
200
+ <polygonPoint>
201
+ <pointLatitude>41.991</pointLatitude>
202
+ <pointLongitude>-68.211</pointLongitude>
203
+ </polygonPoint>
204
+ <polygonPoint>
205
+ <pointLatitude>41.090</pointLatitude>
206
+ <pointLongitude>-69.622</pointLongitude>
207
+ </polygonPoint>
208
+ <polygonPoint>
209
+ <pointLatitude>41.991</pointLatitude>
210
+ <pointLongitude>-71.032</pointLongitude>
211
+ </polygonPoint>
212
+ </geoLocationPolygon>
213
+ </geoLocation>
214
+ </geoLocations>
215
+ <fundingReferences>
216
+ <fundingReference>
217
+ <funderName>Example Funder</funderName>
218
+ <funderIdentifier funderIdentifierType="Crossref Funder ID">https://doi.org/10.13039/501100000780</funderIdentifier>
219
+ <awardNumber awardURI="https://example.com/example-award-uri">12345</awardNumber>
220
+ <awardTitle>Example AwardTitle</awardTitle>
221
+ </fundingReference>
222
+ </fundingReferences>
223
+ <relatedItems>
224
+ <relatedItem relatedItemType="Text" relationType="Cites">
225
+ <relatedItemIdentifier relatedItemIdentifierType="ISSN">1234-5678</relatedItemIdentifier>
226
+ <creators>
227
+ <creator>
228
+ <creatorName nameType="Personal">ExampleFamilyName, ExampleGivenName</creatorName>
229
+ <givenName>ExampleGivenName</givenName>
230
+ <familyName>ExampleFamilyName</familyName>
231
+ </creator>
232
+ </creators>
233
+ <titles>
234
+ <title>Example RelatedItem Title</title>
235
+ <title titleType="TranslatedTitle">Example RelatedItem TranslatedTitle</title>
236
+ </titles>
237
+ <publicationYear>1990</publicationYear>
238
+ <volume>1</volume>
239
+ <issue>2</issue>
240
+ <number numberType="Other">1</number>
241
+ <firstPage>1</firstPage>
242
+ <lastPage>100</lastPage>
243
+ <publisher>Example RelatedItem Publisher</publisher>
244
+ <edition>Example RelatedItem Edition</edition>
245
+ <contributors>
246
+ <contributor contributorType="Other">
247
+ <contributorName nameType="Personal">ExampleFamilyName, ExampleGivenName</contributorName>
248
+ <givenName>ExampleGivenName</givenName>
249
+ <familyName>ExampleFamilyName</familyName>
250
+ </contributor>
251
+ </contributors>
252
+ </relatedItem>
253
+ </relatedItems>
254
+ </resource>
255
+