bolognese 1.2.20 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/bolognese.gemspec +1 -1
- data/lib/bolognese/author_utils.rb +26 -3
- data/lib/bolognese/datacite_utils.rb +2 -1
- data/lib/bolognese/readers/crossref_reader.rb +1 -1
- data/lib/bolognese/readers/datacite_reader.rb +5 -1
- data/lib/bolognese/utils.rb +28 -2
- data/lib/bolognese/version.rb +1 -1
- data/resources/datacite-contributorType-v4.xsd +35 -0
- data/resources/datacite-dateType-v4.xsd +25 -0
- data/resources/datacite-descriptionType-v4.xsd +19 -0
- data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
- data/resources/datacite-nameType-v4.xsd +10 -0
- data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
- data/resources/datacite-relationType-v4.xsd +49 -0
- data/resources/datacite-resourceType-v4.xsd +28 -0
- data/resources/datacite-titleType-v4.xsd +14 -0
- data/resources/kernel-4.3/include/datacite-contributorType-v4.xsd +35 -0
- data/resources/kernel-4.3/include/datacite-dateType-v4.xsd +25 -0
- data/resources/kernel-4.3/include/datacite-descriptionType-v4.xsd +19 -0
- data/resources/kernel-4.3/include/datacite-funderIdentifierType-v4.xsd +16 -0
- data/resources/kernel-4.3/include/datacite-nameType-v4.xsd +10 -0
- data/resources/kernel-4.3/include/datacite-relatedIdentifierType-v4.xsd +34 -0
- data/resources/kernel-4.3/include/datacite-relationType-v4.xsd +49 -0
- data/resources/kernel-4.3/include/datacite-resourceType-v4.xsd +28 -0
- data/resources/kernel-4.3/include/datacite-titleType-v4.xsd +14 -0
- data/resources/kernel-4.3/include/xml.xsd +286 -0
- data/resources/kernel-4.3/metadata.xsd +484 -0
- data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +1 -0
- data/resources/kernel-4/metadata.xsd +38 -8
- data/resources/xml.xsd +286 -0
- data/spec/author_utils_spec.rb +2 -2
- data/spec/fixtures/datacite-example-affiliation.xml +114 -0
- data/spec/readers/codemeta_reader_spec.rb +4 -4
- data/spec/readers/crossref_reader_spec.rb +5 -5
- data/spec/readers/datacite_reader_spec.rb +95 -27
- data/spec/readers/schema_org_reader_spec.rb +3 -3
- data/spec/writers/crosscite_writer_spec.rb +2 -2
- data/spec/writers/datacite_json_writer_spec.rb +3 -3
- data/spec/writers/datacite_writer_spec.rb +1 -1
- metadata +26 -10
@@ -10,7 +10,8 @@
|
|
10
10
|
2016-09-19 v4.0: namespace: kernel-4.0; makes "resourceType" required field, added optional "givenName" and "familyName" to creator and contributor, added "funderReference", added "valueURI" for subject, added "geoLocationPolygon"
|
11
11
|
2017-10-23 v4.1: Addition of dateType value "Other", relationType values "Describes", "IsDescribedBy", "HasVersion", "IsVersionOf", "Requires", "IsRequiredBy", resourceType value "DataPaper", new subproperties "dateInformation", "inPolygonPoint", new attribute "nameType", optional attribute "resourceTypeGeneral" for relatedIdentifier
|
12
12
|
2018-09-08 v4.1.1 Make schema 4.1 backwards compatible to 4.0 by allowing geolocation elements in any order
|
13
|
-
2019-02-14 v4.2: Addition of dateType value "Withdrawn", relationType values "Obsoletes", "isObsoletedBy", addition of new subproperties for Rights: rightsIdentifier, rightsIdentifierScheme, schemeURI, addition of the XML language attribute to the properties Creator, Contributor and Publisher for organizational names, don't check format of DOI
|
13
|
+
2019-02-14 v4.2: Addition of dateType value "Withdrawn", relationType values "Obsoletes", "isObsoletedBy", addition of new subproperties for Rights: rightsIdentifier, rightsIdentifierScheme, schemeURI, addition of the XML language attribute to the properties Creator, Contributor and Publisher for organizational names, don't check format of DOI
|
14
|
+
2019-07-13 v4.3: Addition of new subproperties for Affiliation: "affiliationIdentifier", "affiliationIdentifierScheme", "schemeURI", addition of new sub-property for funderIdentifier: "schemeURI", addition of new funderIdentifierScheme: "ROR", added documentation for nameIdentifier -->
|
14
15
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://datacite.org/schema/kernel-4" targetNamespace="http://datacite.org/schema/kernel-4" elementFormDefault="qualified" xml:lang="EN">
|
15
16
|
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="include/xml.xsd"/>
|
16
17
|
<xs:include schemaLocation="include/datacite-titleType-v4.xsd"/>
|
@@ -69,6 +70,9 @@
|
|
69
70
|
<xs:element name="familyName" minOccurs="0"/>
|
70
71
|
<xs:element name="nameIdentifier" minOccurs="0" maxOccurs="unbounded">
|
71
72
|
<xs:complexType>
|
73
|
+
<xs:annotation>
|
74
|
+
<xs:documentation>Uniquely identifies a creator or contributor, according to various identifier schemes.</xs:documentation>
|
75
|
+
</xs:annotation>
|
72
76
|
<xs:simpleContent>
|
73
77
|
<xs:extension base="nonemptycontentStringType">
|
74
78
|
<xs:attribute name="nameIdentifierScheme" use="required"/>
|
@@ -77,7 +81,20 @@
|
|
77
81
|
</xs:simpleContent>
|
78
82
|
</xs:complexType>
|
79
83
|
</xs:element>
|
80
|
-
<xs:element name="affiliation" minOccurs="0" maxOccurs="unbounded"
|
84
|
+
<xs:element name="affiliation" minOccurs="0" maxOccurs="unbounded">
|
85
|
+
<xs:complexType>
|
86
|
+
<xs:annotation>
|
87
|
+
<xs:documentation>Uniquely identifies an affiliation, according to various identifier schemes.</xs:documentation>
|
88
|
+
</xs:annotation>
|
89
|
+
<xs:simpleContent>
|
90
|
+
<xs:extension base="nonemptycontentStringType">
|
91
|
+
<xs:attribute name="affiliationIdentifier" use="optional"/>
|
92
|
+
<xs:attribute name="affiliationIdentifierScheme" use="optional"/>
|
93
|
+
<xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
|
94
|
+
</xs:extension>
|
95
|
+
</xs:simpleContent>
|
96
|
+
</xs:complexType>
|
97
|
+
</xs:element>
|
81
98
|
</xs:sequence>
|
82
99
|
</xs:complexType>
|
83
100
|
</xs:element>
|
@@ -185,15 +202,31 @@
|
|
185
202
|
<xs:element name="familyName" minOccurs="0"/>
|
186
203
|
<xs:element name="nameIdentifier" minOccurs="0" maxOccurs="unbounded">
|
187
204
|
<xs:complexType>
|
205
|
+
<xs:annotation>
|
206
|
+
<xs:documentation>Uniquely identifies a creator or contributor, according to various identifier schemes.</xs:documentation>
|
207
|
+
</xs:annotation>
|
188
208
|
<xs:simpleContent>
|
189
|
-
<xs:extension base="
|
209
|
+
<xs:extension base="nonemptycontentStringType">
|
190
210
|
<xs:attribute name="nameIdentifierScheme" use="required"/>
|
191
211
|
<xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
|
192
212
|
</xs:extension>
|
193
213
|
</xs:simpleContent>
|
194
214
|
</xs:complexType>
|
195
215
|
</xs:element>
|
196
|
-
<xs:element name="affiliation" minOccurs="0" maxOccurs="unbounded"
|
216
|
+
<xs:element name="affiliation" minOccurs="0" maxOccurs="unbounded">
|
217
|
+
<xs:complexType>
|
218
|
+
<xs:annotation>
|
219
|
+
<xs:documentation>Uniquely identifies an affiliation, according to various identifier schemes.</xs:documentation>
|
220
|
+
</xs:annotation>
|
221
|
+
<xs:simpleContent>
|
222
|
+
<xs:extension base="nonemptycontentStringType">
|
223
|
+
<xs:attribute name="affiliationIdentifier" use="optional"/>
|
224
|
+
<xs:attribute name="affiliationIdentifierScheme" use="optional"/>
|
225
|
+
<xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
|
226
|
+
</xs:extension>
|
227
|
+
</xs:simpleContent>
|
228
|
+
</xs:complexType>
|
229
|
+
</xs:element>
|
197
230
|
</xs:sequence>
|
198
231
|
<xs:attribute name="contributorType" type="contributorType" use="required"/>
|
199
232
|
</xs:complexType>
|
@@ -402,6 +435,7 @@ Use the complete title of a license and include version information if applicabl
|
|
402
435
|
<xs:simpleContent>
|
403
436
|
<xs:extension base="xs:string">
|
404
437
|
<xs:attribute name="funderIdentifierType" type="funderIdentifierType" use="required"/>
|
438
|
+
<xs:attribute name="schemeURI" type="xs:anyURI" use="optional"/>
|
405
439
|
</xs:extension>
|
406
440
|
</xs:simpleContent>
|
407
441
|
</xs:complexType>
|
@@ -439,10 +473,6 @@ Use the complete title of a license and include version information if applicabl
|
|
439
473
|
<xs:minLength value="1"/>
|
440
474
|
</xs:restriction>
|
441
475
|
</xs:simpleType>
|
442
|
-
<xs:attributeGroup name="nameId">
|
443
|
-
<xs:attribute name="nameIdentifier" type="xs:string" use="optional"/>
|
444
|
-
<xs:attribute name="nameIdentifierScheme" type="xs:string" use="optional"/>
|
445
|
-
</xs:attributeGroup>
|
446
476
|
<!-- defines the value for a year -->
|
447
477
|
<xs:simpleType name="yearType">
|
448
478
|
<xs:restriction base="xs:token">
|
data/resources/xml.xsd
ADDED
@@ -0,0 +1,286 @@
|
|
1
|
+
<?xml version='1.0'?>
|
2
|
+
<?xml-stylesheet href="../../2008/09/xsd.xsl" type="text/xsl"?>
|
3
|
+
<xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace"
|
4
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns ="http://www.w3.org/1999/xhtml"
|
6
|
+
xml:lang="en">
|
7
|
+
|
8
|
+
<xs:annotation>
|
9
|
+
<xs:documentation>
|
10
|
+
<div>
|
11
|
+
<h1>About the XML namespace</h1>
|
12
|
+
|
13
|
+
<div class="bodytext">
|
14
|
+
<p>
|
15
|
+
This schema document describes the XML namespace, in a form
|
16
|
+
suitable for import by other schema documents.
|
17
|
+
</p>
|
18
|
+
<p>
|
19
|
+
See <a href="http://www.w3.org/XML/1998/namespace.html">
|
20
|
+
http://www.w3.org/XML/1998/namespace.html</a> and
|
21
|
+
<a href="http://www.w3.org/TR/REC-xml">
|
22
|
+
http://www.w3.org/TR/REC-xml</a> for information
|
23
|
+
about this namespace.
|
24
|
+
</p>
|
25
|
+
<p>
|
26
|
+
Note that local names in this namespace are intended to be
|
27
|
+
defined only by the World Wide Web Consortium or its subgroups.
|
28
|
+
The names currently defined in this namespace are listed below.
|
29
|
+
They should not be used with conflicting semantics by any Working
|
30
|
+
Group, specification, or document instance.
|
31
|
+
</p>
|
32
|
+
<p>
|
33
|
+
See further below in this document for more information about <a
|
34
|
+
href="#usage">how to refer to this schema document from your own
|
35
|
+
XSD schema documents</a> and about <a href="#nsversioning">the
|
36
|
+
namespace-versioning policy governing this schema document</a>.
|
37
|
+
</p>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
</xs:documentation>
|
41
|
+
</xs:annotation>
|
42
|
+
|
43
|
+
<xs:attribute name="lang">
|
44
|
+
<xs:annotation>
|
45
|
+
<xs:documentation>
|
46
|
+
<div>
|
47
|
+
|
48
|
+
<h3>lang (as an attribute name)</h3>
|
49
|
+
<p>
|
50
|
+
denotes an attribute whose value
|
51
|
+
is a language code for the natural language of the content of
|
52
|
+
any element; its value is inherited. This name is reserved
|
53
|
+
by virtue of its definition in the XML specification.</p>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
<div>
|
57
|
+
<h4>Notes</h4>
|
58
|
+
<p>
|
59
|
+
Attempting to install the relevant ISO 2- and 3-letter
|
60
|
+
codes as the enumerated possible values is probably never
|
61
|
+
going to be a realistic possibility.
|
62
|
+
</p>
|
63
|
+
<p>
|
64
|
+
See BCP 47 at <a href="http://www.rfc-editor.org/rfc/bcp/bcp47.txt">
|
65
|
+
http://www.rfc-editor.org/rfc/bcp/bcp47.txt</a>
|
66
|
+
and the IANA language subtag registry at
|
67
|
+
<a href="http://www.iana.org/assignments/language-subtag-registry">
|
68
|
+
http://www.iana.org/assignments/language-subtag-registry</a>
|
69
|
+
for further information.
|
70
|
+
</p>
|
71
|
+
<p>
|
72
|
+
The union allows for the 'un-declaration' of xml:lang with
|
73
|
+
the empty string.
|
74
|
+
</p>
|
75
|
+
</div>
|
76
|
+
</xs:documentation>
|
77
|
+
</xs:annotation>
|
78
|
+
<xs:simpleType>
|
79
|
+
<xs:union memberTypes="xs:language">
|
80
|
+
<xs:simpleType>
|
81
|
+
<xs:restriction base="xs:string">
|
82
|
+
<xs:enumeration value=""/>
|
83
|
+
</xs:restriction>
|
84
|
+
</xs:simpleType>
|
85
|
+
</xs:union>
|
86
|
+
</xs:simpleType>
|
87
|
+
</xs:attribute>
|
88
|
+
|
89
|
+
<xs:attribute name="space">
|
90
|
+
<xs:annotation>
|
91
|
+
<xs:documentation>
|
92
|
+
<div>
|
93
|
+
|
94
|
+
<h3>space (as an attribute name)</h3>
|
95
|
+
<p>
|
96
|
+
denotes an attribute whose
|
97
|
+
value is a keyword indicating what whitespace processing
|
98
|
+
discipline is intended for the content of the element; its
|
99
|
+
value is inherited. This name is reserved by virtue of its
|
100
|
+
definition in the XML specification.</p>
|
101
|
+
|
102
|
+
</div>
|
103
|
+
</xs:documentation>
|
104
|
+
</xs:annotation>
|
105
|
+
<xs:simpleType>
|
106
|
+
<xs:restriction base="xs:NCName">
|
107
|
+
<xs:enumeration value="default"/>
|
108
|
+
<xs:enumeration value="preserve"/>
|
109
|
+
</xs:restriction>
|
110
|
+
</xs:simpleType>
|
111
|
+
</xs:attribute>
|
112
|
+
|
113
|
+
<xs:attribute name="base" type="xs:anyURI"> <xs:annotation>
|
114
|
+
<xs:documentation>
|
115
|
+
<div>
|
116
|
+
|
117
|
+
<h3>base (as an attribute name)</h3>
|
118
|
+
<p>
|
119
|
+
denotes an attribute whose value
|
120
|
+
provides a URI to be used as the base for interpreting any
|
121
|
+
relative URIs in the scope of the element on which it
|
122
|
+
appears; its value is inherited. This name is reserved
|
123
|
+
by virtue of its definition in the XML Base specification.</p>
|
124
|
+
|
125
|
+
<p>
|
126
|
+
See <a
|
127
|
+
href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a>
|
128
|
+
for information about this attribute.
|
129
|
+
</p>
|
130
|
+
</div>
|
131
|
+
</xs:documentation>
|
132
|
+
</xs:annotation>
|
133
|
+
</xs:attribute>
|
134
|
+
|
135
|
+
<xs:attribute name="id" type="xs:ID">
|
136
|
+
<xs:annotation>
|
137
|
+
<xs:documentation>
|
138
|
+
<div>
|
139
|
+
|
140
|
+
<h3>id (as an attribute name)</h3>
|
141
|
+
<p>
|
142
|
+
denotes an attribute whose value
|
143
|
+
should be interpreted as if declared to be of type ID.
|
144
|
+
This name is reserved by virtue of its definition in the
|
145
|
+
xml:id specification.</p>
|
146
|
+
|
147
|
+
<p>
|
148
|
+
See <a
|
149
|
+
href="http://www.w3.org/TR/xml-id/">http://www.w3.org/TR/xml-id/</a>
|
150
|
+
for information about this attribute.
|
151
|
+
</p>
|
152
|
+
</div>
|
153
|
+
</xs:documentation>
|
154
|
+
</xs:annotation>
|
155
|
+
</xs:attribute>
|
156
|
+
|
157
|
+
<xs:attributeGroup name="specialAttrs">
|
158
|
+
<xs:attribute ref="xml:base"/>
|
159
|
+
<xs:attribute ref="xml:lang"/>
|
160
|
+
<xs:attribute ref="xml:space"/>
|
161
|
+
<xs:attribute ref="xml:id"/>
|
162
|
+
</xs:attributeGroup>
|
163
|
+
|
164
|
+
<xs:annotation>
|
165
|
+
<xs:documentation>
|
166
|
+
<div>
|
167
|
+
|
168
|
+
<h3>Father (in any context at all)</h3>
|
169
|
+
|
170
|
+
<div class="bodytext">
|
171
|
+
<p>
|
172
|
+
denotes Jon Bosak, the chair of
|
173
|
+
the original XML Working Group. This name is reserved by
|
174
|
+
the following decision of the W3C XML Plenary and
|
175
|
+
XML Coordination groups:
|
176
|
+
</p>
|
177
|
+
<blockquote>
|
178
|
+
<p>
|
179
|
+
In appreciation for his vision, leadership and
|
180
|
+
dedication the W3C XML Plenary on this 10th day of
|
181
|
+
February, 2000, reserves for Jon Bosak in perpetuity
|
182
|
+
the XML name "xml:Father".
|
183
|
+
</p>
|
184
|
+
</blockquote>
|
185
|
+
</div>
|
186
|
+
</div>
|
187
|
+
</xs:documentation>
|
188
|
+
</xs:annotation>
|
189
|
+
|
190
|
+
<xs:annotation>
|
191
|
+
<xs:documentation>
|
192
|
+
<div xml:id="usage" id="usage">
|
193
|
+
<h2><a name="usage">About this schema document</a></h2>
|
194
|
+
|
195
|
+
<div class="bodytext">
|
196
|
+
<p>
|
197
|
+
This schema defines attributes and an attribute group suitable
|
198
|
+
for use by schemas wishing to allow <code>xml:base</code>,
|
199
|
+
<code>xml:lang</code>, <code>xml:space</code> or
|
200
|
+
<code>xml:id</code> attributes on elements they define.
|
201
|
+
</p>
|
202
|
+
<p>
|
203
|
+
To enable this, such a schema must import this schema for
|
204
|
+
the XML namespace, e.g. as follows:
|
205
|
+
</p>
|
206
|
+
<pre>
|
207
|
+
<schema . . .>
|
208
|
+
. . .
|
209
|
+
<import namespace="http://www.w3.org/XML/1998/namespace"
|
210
|
+
schemaLocation="http://www.w3.org/2001/xml.xsd"/>
|
211
|
+
</pre>
|
212
|
+
<p>
|
213
|
+
or
|
214
|
+
</p>
|
215
|
+
<pre>
|
216
|
+
<import namespace="http://www.w3.org/XML/1998/namespace"
|
217
|
+
schemaLocation="http://www.w3.org/2009/01/xml.xsd"/>
|
218
|
+
</pre>
|
219
|
+
<p>
|
220
|
+
Subsequently, qualified reference to any of the attributes or the
|
221
|
+
group defined below will have the desired effect, e.g.
|
222
|
+
</p>
|
223
|
+
<pre>
|
224
|
+
<type . . .>
|
225
|
+
. . .
|
226
|
+
<attributeGroup ref="xml:specialAttrs"/>
|
227
|
+
</pre>
|
228
|
+
<p>
|
229
|
+
will define a type which will schema-validate an instance element
|
230
|
+
with any of those attributes.
|
231
|
+
</p>
|
232
|
+
</div>
|
233
|
+
</div>
|
234
|
+
</xs:documentation>
|
235
|
+
</xs:annotation>
|
236
|
+
|
237
|
+
<xs:annotation>
|
238
|
+
<xs:documentation>
|
239
|
+
<div id="nsversioning" xml:id="nsversioning">
|
240
|
+
<h2><a name="nsversioning">Versioning policy for this schema document</a></h2>
|
241
|
+
<div class="bodytext">
|
242
|
+
<p>
|
243
|
+
In keeping with the XML Schema WG's standard versioning
|
244
|
+
policy, this schema document will persist at
|
245
|
+
<a href="http://www.w3.org/2009/01/xml.xsd">
|
246
|
+
http://www.w3.org/2009/01/xml.xsd</a>.
|
247
|
+
</p>
|
248
|
+
<p>
|
249
|
+
At the date of issue it can also be found at
|
250
|
+
<a href="http://www.w3.org/2001/xml.xsd">
|
251
|
+
http://www.w3.org/2001/xml.xsd</a>.
|
252
|
+
</p>
|
253
|
+
<p>
|
254
|
+
The schema document at that URI may however change in the future,
|
255
|
+
in order to remain compatible with the latest version of XML
|
256
|
+
Schema itself, or with the XML namespace itself. In other words,
|
257
|
+
if the XML Schema or XML namespaces change, the version of this
|
258
|
+
document at <a href="http://www.w3.org/2001/xml.xsd">
|
259
|
+
http://www.w3.org/2001/xml.xsd
|
260
|
+
</a>
|
261
|
+
will change accordingly; the version at
|
262
|
+
<a href="http://www.w3.org/2009/01/xml.xsd">
|
263
|
+
http://www.w3.org/2009/01/xml.xsd
|
264
|
+
</a>
|
265
|
+
will not change.
|
266
|
+
</p>
|
267
|
+
<p>
|
268
|
+
Previous dated (and unchanging) versions of this schema
|
269
|
+
document are at:
|
270
|
+
</p>
|
271
|
+
<ul>
|
272
|
+
<li><a href="http://www.w3.org/2009/01/xml.xsd">
|
273
|
+
http://www.w3.org/2009/01/xml.xsd</a></li>
|
274
|
+
<li><a href="http://www.w3.org/2007/08/xml.xsd">
|
275
|
+
http://www.w3.org/2007/08/xml.xsd</a></li>
|
276
|
+
<li><a href="http://www.w3.org/2004/10/xml.xsd">
|
277
|
+
http://www.w3.org/2004/10/xml.xsd</a></li>
|
278
|
+
<li><a href="http://www.w3.org/2001/03/xml.xsd">
|
279
|
+
http://www.w3.org/2001/03/xml.xsd</a></li>
|
280
|
+
</ul>
|
281
|
+
</div>
|
282
|
+
</div>
|
283
|
+
</xs:documentation>
|
284
|
+
</xs:annotation>
|
285
|
+
|
286
|
+
</xs:schema>
|
data/spec/author_utils_spec.rb
CHANGED
@@ -98,7 +98,7 @@ describe Bolognese::Metadata, vcr: true do
|
|
98
98
|
meta = Maremma.from_xml(subject.raw).fetch("resource", {})
|
99
99
|
response = subject.get_authors(meta.dig("creators", "creator"))
|
100
100
|
expect(response.length).to eq(1000)
|
101
|
-
expect(response.first).to eq("nameType"=>"Personal", "name"=>"Adam, Jaroslav", "givenName"=>"Jaroslav", "familyName"=>"Adam", "affiliation" => "Prague, Tech. U.")
|
101
|
+
expect(response.first).to eq("nameType"=>"Personal", "name"=>"Adam, Jaroslav", "givenName"=>"Jaroslav", "familyName"=>"Adam", "affiliation" => [{"name"=>"Prague, Tech. U."}])
|
102
102
|
end
|
103
103
|
|
104
104
|
it "is organization" do
|
@@ -136,7 +136,7 @@ describe Bolognese::Metadata, vcr: true do
|
|
136
136
|
subject = Bolognese::Metadata.new(input: input, from: "datacite")
|
137
137
|
meta = Maremma.from_xml(subject.raw).fetch("resource", {})
|
138
138
|
response = subject.get_one_author(meta.dig("creators", "creator"))
|
139
|
-
expect(response).to eq("nameType"=>"Personal", "name"=>"Dubos, Thomas", "givenName"=>"Thomas", "familyName"=>"Dubos", "affiliation" => "
|
139
|
+
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"}])
|
140
140
|
end
|
141
141
|
|
142
142
|
it "nameType organizational" do
|
@@ -0,0 +1,114 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://datacite.org/schema/kernel-4" xsi:schemaLocation="http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4.2/metadata.xsd">
|
3
|
+
<identifier identifierType="DOI">10.5072/example-full</identifier>
|
4
|
+
<creators>
|
5
|
+
<creator>
|
6
|
+
<creatorName nameType="Personal">Miller, Elizabeth</creatorName>
|
7
|
+
<givenName>Elizabeth</givenName>
|
8
|
+
<familyName>Miller</familyName>
|
9
|
+
<nameIdentifier schemeURI="http://orcid.org/" nameIdentifierScheme="ORCID">0000-0001-5000-0007</nameIdentifier>
|
10
|
+
<affiliation affiliationIdentifier="https://ror.org/04wxnsj81" affiliationIdentifierScheme="ROR">DataCite</affiliation>
|
11
|
+
</creator>
|
12
|
+
<creator>
|
13
|
+
<creatorName nameType="Personal">Carberry, Josiah</creatorName>
|
14
|
+
<givenName>Josiah</givenName>
|
15
|
+
<familyName>Carberry</familyName>
|
16
|
+
<nameIdentifier schemeURI="http://orcid.org/" nameIdentifierScheme="ORCID">0000-0002-1825-0097</nameIdentifier>
|
17
|
+
<affiliation affiliationIdentifier="https://ror.org/05gq02987" affiliationIdentifierScheme="ROR">Brown University</affiliation>
|
18
|
+
<affiliation affiliationIdentifier="grid.268117.b" affiliationIdentifierScheme="GRID" schemeURI="https://grid.ac/institutes/">Wesleyan University</affiliation>
|
19
|
+
</creator>
|
20
|
+
<creator>
|
21
|
+
<creatorName nameType="Organizational">The Psychoceramics Study Group</creatorName>
|
22
|
+
<affiliation affiliationIdentifier="https://ror.org/05gq02987" affiliationIdentifierScheme="ROR">Brown University</affiliation>
|
23
|
+
</creator>
|
24
|
+
</creators>
|
25
|
+
<titles>
|
26
|
+
<title xml:lang="en-US">Full DataCite XML Example</title>
|
27
|
+
<title xml:lang="en-US" titleType="Subtitle">Demonstration of DataCite Properties.</title>
|
28
|
+
</titles>
|
29
|
+
<publisher xml:lang="en">DataCite</publisher>
|
30
|
+
<publicationYear>2014</publicationYear>
|
31
|
+
<subjects>
|
32
|
+
<subject xml:lang="en-US" schemeURI="http://dewey.info/" subjectScheme="dewey">000 computer science</subject>
|
33
|
+
</subjects>
|
34
|
+
<contributors>
|
35
|
+
<contributor contributorType="ProjectLeader">
|
36
|
+
<contributorName>Starr, Joan</contributorName>
|
37
|
+
<givenName>Joan</givenName>
|
38
|
+
<familyName>Starr</familyName>
|
39
|
+
<nameIdentifier schemeURI="http://orcid.org/" nameIdentifierScheme="ORCID">0000-0002-7285-027X</nameIdentifier>
|
40
|
+
<affiliation affiliationIdentifier="https://ror.org/03yrm5c26" affiliationIdentifierScheme="ROR">California Digital Library</affiliation>
|
41
|
+
</contributor>
|
42
|
+
</contributors>
|
43
|
+
<dates>
|
44
|
+
<date dateType="Updated" dateInformation="Updated with 4.2 properties">2017-09-13</date>
|
45
|
+
</dates>
|
46
|
+
<language>en-US</language>
|
47
|
+
<resourceType resourceTypeGeneral="Software">XML</resourceType>
|
48
|
+
<alternateIdentifiers>
|
49
|
+
<alternateIdentifier alternateIdentifierType="URL">https://schema.datacite.org/meta/kernel-4.2/example/datacite-example-full-v4.2.xml</alternateIdentifier>
|
50
|
+
</alternateIdentifiers>
|
51
|
+
<relatedIdentifiers>
|
52
|
+
<relatedIdentifier relatedIdentifierType="URL" relationType="HasMetadata" relatedMetadataScheme="citeproc+json" schemeURI="https://github.com/citation-style-language/schema/raw/master/csl-data.json">https://data.datacite.org/application/citeproc+json/10.5072/example-full</relatedIdentifier>
|
53
|
+
<relatedIdentifier relatedIdentifierType="arXiv" relationType="IsReviewedBy" resourceTypeGeneral="Text">arXiv:0706.0001</relatedIdentifier>
|
54
|
+
</relatedIdentifiers>
|
55
|
+
<sizes>
|
56
|
+
<size>4 kB</size>
|
57
|
+
</sizes>
|
58
|
+
<formats>
|
59
|
+
<format>application/xml</format>
|
60
|
+
</formats>
|
61
|
+
<version>4.2</version>
|
62
|
+
<rightsList>
|
63
|
+
<rights xml:lang="en-US" schemeURI="https://spdx.org/licenses/" rightsIdentifierScheme="SPDX" rightsIdentifier="CC0 1.0" rightsURI="http://creativecommons.org/publicdomain/zero/1.0/"/> </rightsList>
|
64
|
+
<descriptions>
|
65
|
+
<description xml:lang="en-US" descriptionType="Abstract">
|
66
|
+
XML example of all DataCite Metadata Schema v4.2 properties.
|
67
|
+
</description>
|
68
|
+
</descriptions>
|
69
|
+
<geoLocations>
|
70
|
+
<geoLocation>
|
71
|
+
<geoLocationPlace>Atlantic Ocean</geoLocationPlace>
|
72
|
+
<geoLocationPoint>
|
73
|
+
<pointLongitude>-67.302</pointLongitude>
|
74
|
+
<pointLatitude>31.233</pointLatitude>
|
75
|
+
</geoLocationPoint>
|
76
|
+
<geoLocationBox>
|
77
|
+
<westBoundLongitude>-71.032</westBoundLongitude>
|
78
|
+
<eastBoundLongitude>-68.211</eastBoundLongitude>
|
79
|
+
<southBoundLatitude>41.090</southBoundLatitude>
|
80
|
+
<northBoundLatitude>42.893</northBoundLatitude>
|
81
|
+
</geoLocationBox>
|
82
|
+
<geoLocationPolygon>
|
83
|
+
<polygonPoint>
|
84
|
+
<pointLatitude>41.991</pointLatitude>
|
85
|
+
<pointLongitude>-71.032</pointLongitude>
|
86
|
+
</polygonPoint>
|
87
|
+
<polygonPoint>
|
88
|
+
<pointLatitude>42.893</pointLatitude>
|
89
|
+
<pointLongitude>-69.622</pointLongitude>
|
90
|
+
</polygonPoint>
|
91
|
+
<polygonPoint>
|
92
|
+
<pointLatitude>41.991</pointLatitude>
|
93
|
+
<pointLongitude>-68.211</pointLongitude>
|
94
|
+
</polygonPoint>
|
95
|
+
<polygonPoint>
|
96
|
+
<pointLatitude>41.090</pointLatitude>
|
97
|
+
<pointLongitude>-69.622</pointLongitude>
|
98
|
+
</polygonPoint>
|
99
|
+
<polygonPoint>
|
100
|
+
<pointLatitude>41.991</pointLatitude>
|
101
|
+
<pointLongitude>-71.032</pointLongitude>
|
102
|
+
</polygonPoint>
|
103
|
+
</geoLocationPolygon>
|
104
|
+
</geoLocation>
|
105
|
+
</geoLocations>
|
106
|
+
<fundingReferences>
|
107
|
+
<fundingReference>
|
108
|
+
<funderName>National Science Foundation</funderName>
|
109
|
+
<funderIdentifier funderIdentifierType="Crossref Funder ID" schemeURI="https://doi.org/">https://doi.org/10.13039/100000001</funderIdentifier>
|
110
|
+
<awardNumber>CBET-106</awardNumber>
|
111
|
+
<awardTitle>Full DataCite XML Example</awardTitle>
|
112
|
+
</fundingReference>
|
113
|
+
</fundingReferences>
|
114
|
+
</resource>
|