-
Notifications
You must be signed in to change notification settings - Fork 358
Expand file tree
/
Copy pathdatacite.json
More file actions
611 lines (611 loc) · 18.5 KB
/
datacite.json
File metadata and controls
611 lines (611 loc) · 18.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "datacite-v4.0.json",
"title": "DataCite v4.0",
"description": "JSON representation of the DataCite v4.0 schema.",
"additionalProperties": false,
"definitions": {
"doi": {
"description": "Digital object identifier.",
"type": "string",
"pattern": "10\\..+/.+"
},
"year": {
"type": "string"
},
"language": {
"description": "Allowed values are taken from IETF BCP 47, ISO 639-1 language codes.",
"type": "string"
},
"uri": {
"description": "For adding future URI validation.",
"type": "string"
},
"nameIdentifiers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"nameIdentifier": {
"type": "string"
},
"nameIdentifierScheme": {
"type": "string"
},
"schemeURI": {
"$ref": "#/definitions/uri"
}
},
"additionalProperties": false,
"required": [
"nameIdentifier",
"nameIdentifierScheme"
]
}
}
},
"type": "object",
"properties": {
"identifier": {
"description": "A persistent identifier that identifies a resource. Currently, only DOI is allowed.",
"type": "object",
"properties": {
"identifier": {
"$ref": "#/definitions/doi"
},
"identifierType": {
"enum": [
"DOI"
]
}
},
"additionalProperties": false,
"required": [
"identifier",
"identifierType"
]
},
"creators": {
"description": "The main researchers involved working on the data, or the authors of the publication in priority order. May be a corporate/institutional or personal name. Format: Family, Given",
"type": "array",
"items": {
"creatorName": {
"type": "string"
},
"nameIdentifiers": {
"$ref": "#/definitions/nameIdentifiers"
},
"affiliations": {
"type": "array",
"items": {
"type": "string"
}
},
"familyName": {
"type": "string"
},
"givenName": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"creatorName"
]
},
"titles": {
"type": "array",
"items": {
"description": "A name or title by which a resource is known.",
"type": "object",
"properties": {
"title": {
"type": "string",
"minLength": 1
},
"type": {
"description": "WARNING: This field has been superseded by 'titleType'",
"enum": [
"AlternativeTitle",
"Subtitle",
"TranslatedTitle",
"Other"
]
},
"titleType": {
"enum": [
"AlternativeTitle",
"Subtitle",
"TranslatedTitle",
"Other"
]
},
"lang": {
"$ref": "#/definitions/language"
}
},
"additionalProperties": false,
"required": [
"title"
]
}
},
"publisher": {
"description": "The name of the entity that holds, archives, publishes prints, distributes, releases, issues, or produces the resource. This property will be used to formulate the citation, so consider the prominence of the role. In the case of datasets, \"publish\" is understood to mean making the data available to the community of researchers.",
"type": "string",
"minLength": 1
},
"publicationYear": {
"description": "Year when the data is made publicly available. If an embargo period has been in effect, use the date when the embargo period ends. In the case of datasets, \"publish\" is understood to mean making the data available on a specific date to the community of researchers. If there is no standard publication year value, use the date that would be preferred from a citation perspective.",
"$ref": "#/definitions/year"
},
"subjects": {
"type": "array",
"items": {
"description": "Subject, keywords, classification codes, or key phrases describing the resource.",
"type": "object",
"properties": {
"subject": {
"type": "string"
},
"subjectScheme": {
"type": "string"
},
"schemeURI": {
"$ref": "#/definitions/uri"
},
"valueURI": {
"$ref": "#/definitions/uri"
},
"lang": {
"$ref": "#/definitions/language"
}
},
"additionalProperties": false,
"minProperties": 1
}
},
"contributors": {
"description": "The institution or person responsible for collecting, creating, or otherwise contributing to the development of the dataset. The personal name format should be: Family, Given.",
"type": "array",
"items": {
"type": "object",
"properties": {
"contributorType": {
"enum": [
"ContactPerson",
"DataCollector",
"DataCurator",
"DataManager",
"Distributor",
"Editor",
"HostingInstitution",
"Other",
"Producer",
"ProjectLeader",
"ProjectManager",
"ProjectMember",
"RegistrationAgency",
"RegistrationAuthority",
"RelatedPerson",
"ResearchGroup",
"RightsHolder",
"Researcher",
"Sponsor",
"Supervisor",
"WorkPackageLeader"
]
},
"contributorName": {
"type": "string"
},
"nameIdentifiers": {
"$ref": "#/definitions/nameIdentifiers"
},
"affiliations": {
"type": "array",
"items": {
"type": "string"
}
},
"familyName": {
"type": "string"
},
"givenName": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"contributorName",
"contributorType"
]
}
},
"dates": {
"description": "Different dates relevant to the work.",
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"description": "YYYY,YYYY-MM-DD, YYYY-MM-DDThh:mm:ssTZD or any other format or level of granularity described in W3CDTF. Use RKMS-ISO8601 standard for depicting date ranges.",
"type": "string"
},
"dateType": {
"enum": [
"Accepted",
"Available",
"Collected",
"Copyrighted",
"Created",
"Issued",
"Submitted",
"Updated",
"Valid"
]
}
},
"additionalProperties": false,
"required": ["dateType"]
}
},
"language": {
"description": "Primary language of the resource.",
"$ref": "#/definitions/language"
},
"resourceType": {
"description": "The type of a resource. You may enter an additional free text description. The format is open, but the preferred format is a single term of some detail so that a pair can be formed with the sub-property.",
"type": "object",
"properties": {
"resourceType": {
"type": "string"
},
"resourceTypeGeneral": {
"description": "The general type of a resource.",
"enum": [
"Audiovisual",
"Collection",
"Dataset",
"Event",
"Image",
"InteractiveResource",
"Model",
"PhysicalObject",
"Service",
"Software",
"Sound",
"Text",
"Workflow",
"Other"
]
}
},
"additionalProperties": false,
"required": ["resourceTypeGeneral"]
},
"alternateIdentifiers": {
"description": "An identifier or identifiers other than the primary Identifier applied to the resource being registered. This may be any alphanumeric string which is unique within its domain of issue. May be used for local identifiers. AlternateIdentifier should be used for another identifier of the same instance (same location, same file).",
"type": "array",
"items": {
"type": "object",
"properties": {
"alternateIdentifier": {
"type": "string"
},
"alternateIdentifierType": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"alternateIdentifier",
"alternateIdentifierType"
]
}
},
"relatedIdentifiers": {
"description": "Identifiers of related resources. Use this property to indicate subsets of properties, as appropriate.",
"type": "array",
"items": {
"type": "object",
"properties": {
"relatedIdentifier": {
"type": "string"
},
"relatedIdentifierType": {
"enum": [
"ARK",
"arXiv",
"bibcode",
"DOI",
"EAN13",
"EISSN",
"Handle",
"IGSN",
"ISBN",
"ISSN",
"ISTC",
"LISSN",
"LSID",
"PMID",
"PURL",
"UPC",
"URL",
"URN"
]
},
"relationType": {
"enum": [
"IsCitedBy",
"Cites",
"IsSupplementTo",
"IsSupplementedBy",
"IsContinuedBy",
"Continues",
"IsNewVersionOf",
"IsPreviousVersionOf",
"IsPartOf",
"HasPart",
"IsReferencedBy",
"References",
"IsDocumentedBy",
"Documents",
"IsCompiledBy",
"Compiles",
"IsVariantFormOf",
"IsOriginalFormOf",
"IsIdenticalTo",
"HasMetadata",
"IsMetadataFor",
"Reviews",
"IsReviewedBy",
"IsDerivedFrom",
"IsSourceOf"
]
},
"relatedMetadataScheme": {
"type": "string"
},
"schemeURI": {
"$ref": "#/definitions/uri"
}
},
"additionalProperties": false,
"required": [
"relatedIdentifier",
"relationType",
"relatedIdentifierType"
]
}
},
"sizes": {
"description": "Unstructured size information about the resource.",
"type": "array",
"items": {
"type": "string"
}
},
"formats": {
"description": "Technical format of the resource. Use file extension or MIME type where possible.",
"type": "array",
"items": {
"type": "string"
}
},
"version": {
"description": "Version number of the resource. If the primary resource has changed the version number increases. Register a new identifier for a major version change. Individual stewards need to determine which are major vs. minor versions. May be used in conjunction with properties 11 and 12 (AlternateIdentifier and RelatedIdentifier) to indicate various information updates. May be used in conjunction with property 17 (Description) to indicate the nature and file/record range of version.",
"type": "string"
},
"rightsList": {
"description": "Any rights information for this resource. Provide a rights management statement for the resource or reference a service providing such information. Include embargo information if applicable. Use the complete title of a license and include version information if applicable.",
"type": "array",
"items": {
"type": "object",
"properties": {
"rightsURI": {
"$ref": "#/definitions/uri"
},
"rights": {
"type": "string"
}
},
"additionalProperties": false,
"minProperties": 1
}
},
"descriptions": {
"description": "All additional information that does not fit in any of the other categories. May be used for technical information. It is a best practice to supply a description.",
"type": "array",
"items": {
"type": "object",
"properties": {
"description": {
"type": "string",
"minLength": 1
},
"descriptionType": {
"type": "string",
"description": "The type of the description.",
"enum": [
"Abstract",
"Methods",
"SeriesInformation",
"TableOfContents",
"TechnicalInfo",
"Other"
]
},
"lang": {
"$ref": "#/definitions/language"
}
},
"additionalProperties": false,
"required": [
"description",
"descriptionType"
]
}
},
"fundingReferences": {
"description": "Information about financial support (funding) for the resource being registered.",
"type": "array",
"items": {
"type": "object",
"properties": {
"funderName": {
"description": "Name of the funding provider.",
"type": "string"
},
"funderIdentifier": {
"description": "Uniquely identifies a funding entity, according to various types.",
"type": "object",
"properties": {
"funderIdentifier": {
"type": "string"
},
"funderIdentifierType": {
"type": "string",
"enum": [
"ISNI",
"GRID",
"Crossref Funder ID",
"ROR",
"Other"
]
},
"schemeURI": {
"$ref": "#/definitions/uri"
}
},
"additionalProperties": false,
"required": [
"funderIdentifier",
"funderIdentifierType"
]
},
"awardNumber": {
"description": "The code assigned by the funder to a sponsored award (grant).",
"type": "object",
"properties": {
"awardNumber": {
"type": "string"
},
"awardURI": {
"$ref": "#/definitions/uri"
}
},
"additionalProperties": false,
"required": ["awardNumber"]
},
"awardTitle": {
"description": "The human readable title of the award (grant).",
"type": "string"
}
},
"additionalProperties": false,
"required": ["funderName"]
}
},
"geoLocations": {
"description": "Spatial region or named place where the data was gathered or about which the data is focused.",
"type": "array",
"items": {
"type": "object",
"properties": {
"geoLocationPoint": {
"description": "A point location in space.",
"type": "object",
"properties": {
"pointLongitude": {
"description": "Longitudinal dimension of point.",
"type": "number"
},
"pointLatitude": {
"description": "Latitudinal dimension of point.",
"type": "number"
}
},
"additionalProperties": false,
"required": [
"pointLongitude",
"pointLatitude"
]
},
"geoLocationBox": {
"description": "The spatial limits of a box.",
"type": "object",
"properties": {
"westBoundLongitude": {
"description": "Western longitudinal dimension of box.",
"type": "number"
},
"eastBoundLongitude": {
"description": "Eastern longitudinal dimension of box.",
"type": "number"
},
"southBoundLatitude": {
"description": "Southern latitudinal dimension of box.",
"type": "number"
},
"northBoundLatitude": {
"description": "Northern latitudinal dimension of box.",
"type": "number"
}
},
"additionalProperties": false,
"required": [
"westBoundLongitude",
"eastBoundLongitude",
"southBoundLatitude",
"northBoundLatitude"
]
},
"geoLocationPlace": {
"description": "Spatial region or named place where the data was gathered or about which the data is focused.",
"type": "string"
},
"geoLocationPolygon": {
"description": "A drawn polygon area, defined by a set of points and lines connecting the points in a closed chain.",
"type": "object",
"properties": {
"polygonPoints": {
"description": "A point location in a polygon.",
"type": "array",
"minItems": 3,
"items": {
"type": "object",
"properties": {
"pointLongitude": {
"description": "Longitudinal dimension of point.",
"type": "number"
},
"pointLatitude": {
"description": "Latitudinal dimension of point.",
"type": "number"
}
},
"additionalProperties": false,
"required": [
"pointLongitude",
"pointLatitude"
]
}
}
},
"additionalProperties": false,
"required": ["polygonPoints"]
}
}
}
}
},
"required": [
"identifier",
"creators",
"titles",
"publisher",
"publicationYear",
"resourceType"
]
}