-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbestpractice.qmd
More file actions
1109 lines (920 loc) · 64.8 KB
/
bestpractice.qmd
File metadata and controls
1109 lines (920 loc) · 64.8 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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Authors
**Christiane Bayer**, IT-Gruppe Geisteswissenschaften (LMU) \
([ORCID: 0000-0003-3074-4222](https://orcid.org/0000-0003-3074-4222), v2)\
**Andreas Frech**, Universitätsbibliothek der LMU \
([ORCID: 0000-0002-1458-1163](https://orcid.org/0000-0002-1458-1163), v2+v3+v4)\
**Vanessa Gabriel**, Universitätsbibliothek der LMU \
([ORCID: 0000-0002-2058-5160](https://orcid.org/0000-0002-2058-5160), v2+v3)\
**Sonja Kümmet**, Universitätsbibliothek der LMU \
([ORCID: 0000-0002-8954-0200](https://orcid.org/0000-0002-8954-0200), v1)\
**Stephan Lücke**, IT-Gruppe Geisteswissenschaften (LMU) \
([ORCID: 0000-0002-5853-1918](https://orcid.org/0000-0002-5853-1918), v1+v2)\
**Laura Meier**, Universitätsbibliothek der LMU \
([ORCID: 0000-0003-1368-2306](https://orcid.org/0000-0003-1368-2306), v4)\
**Johannes Munke**, Leibniz Supercomputing Centre \
([ORCID: 0000-0002-5031-9170](https://orcid.org/0000-0002-5031-9170), v2)\
**Markus Putnings**, Universitätsbibliothek der FAU \
([ORCID: 0000-0002-6014-9048](https://orcid.org/0000-0002-6014-9048), v2)\
**Jürgen Rohrwild**, Universitätsbibliothek der FAU \
([ORCID: 0000-0002-1167-0339](https://orcid.org/0000-0002-1167-0339), v2+v3+v4)\
**Julian Schulz**, Max Weber Stiftung - Deutsche Geisteswissenschaftliche Institute im Ausland \
([ORCID: 0000-0003-4374-2680](https://orcid.org/0000-0003-4374-2680), v1+v2)\
**Martin Spenger**, Universitätsbibliothek der LMU \
([ORCID: 0000-0002-8841-5985](https://orcid.org/0000-0002-8841-5985), v1+v2+v3+v4)\
**Tobias Weber**, Leibniz Supercomputing Centre \
([ORCID: 0000-0003-1815-7041](https://orcid.org/0000-0003-1815-7041), v1)\
If you have any questions about this DataCite Best Practice Guide, please contact [forschungsdaten@ub.uni-muenchen.de](mailto:forschungsdaten@ub.uni-muenchen.de) or [ub-fdm@fau.de](mailto:ub-fdm@fau.de).
# DataCite Best Practice Guide
The [DataCite Metadata Schema [external link]](https://schema.datacite.org) has become a de facto standard for describing research data. Despite all of its efforts to standardize metadata allocation, this schema offers a great deal of leeway and alternatives in detail. For example, it is optional to clearly identify languages used in the metadata either via ISO 639-1, ISO 639-2, ISO 639-2/B (language codes commonly used by libraries) or ISO 639-3 language tags. The value of metadata increases with its consistency, which is achieved through compliance with standards. One of the aims of the Best Practice Guide presented here is therefore to limit the choices provided by DataCite by specifying a preference, and in this way to ensure as much consistency as possible.
This document is a guideline for the use of the official [DataCite Metadata Schema documentation [external link]](https://schema.datacite.org), [version 4.6 [external link]](https://doi.org/10.14454/mzv1-5b55). A more convenient support documentation with better navigation can be found here as a HTML version [DataCite Metadata Schema Documentation [external link]](https://datacite-metadata-schema.readthedocs.io).
It is meant for researchers, IT and library support staff. Further information on the schema can be found on the [DataCite support site [external link]](https://support.datacite.org/docs/datacite-metadata-schema).
To create a DataCite XML file, we recommend to you to use the [DataCite Metadata Generator [external link]](https://dhvlab.gwi.uni-muenchen.de/datacite-generator/). This tool is kept in sync with this guideline, safe for transmission times inbetween versions. If you want to create metadata for research data on a scale that is too large for manual procedures, please contact one of the institutions named above.
## Overview
The first part, [General Best Practice](#a.-general-best-practice), is a selection of recommendations and obligations when using DataCite in general and was written in an FAQ-style (Frequently Asked Questions).
The second part, [Best Practice for specific fields](#b.-best-practice-for-specific-fields), gives more details for each of the 20 metadata fields of the DataCite metadata standard.
The third part, [Examples](#c.-examples), is a compilation of DataCite examples.
### [A. General Best Practice](#a.-general-best-practice-1)
* [What do the metadata describe?](#what-do-the-metadata-describe)
* [What is the language of the metadata?](#what-is-the-language-of-the-metadata)
* [How should I specify an institution?](#how-should-i-specify-an-institution)
* [How should I specify a person?](#how-should-i-specify-a-person)
* [How should I handle different versions of research data?](#how-should-i-handle-different-versions-of-the-same-research-data)
### [B. Best Practice for specific fields](#b.-best-practice-for-specific-fields-1)
* [1 identifier [m]](#identifier-m)
* [2 creator [m]](#creator-m)
* [3 title [m]](#title-m)
* [4 publisher [m]](#publisher-m)
* [5 publicationYear [m]](#publicationyear-m)
* [6 subject [m]*](#subject-m)
* [7 contributor [r]](#contributor-r)
* [8 date [r]](#date-r)
* [9 language [o]](#language-o)
* [10 resourceType [m]](#resourcetype-m)
* [11 alternateIdentifier [o]](#alternateidentifier-o)
* [12 relatedIdentifier [r]](#relatedidentifier-r)
* [13 size [r]*](#size-r)
* [14 format [o]](#format-o)
* [15 version [o]](#version-o)
* [16 rights [m]*](#rights-m)
* [17 description [m]*](#description-m)
* [18 geoLocation [r]](#geolocation-r)
* [19 fundingReference [o]](#fundingreference-o)
* [20 relatedItem [o]](#relateditem-o)
Mandatory fields are indicated by the tag **[m]**, recommended fields by **[r]** and optional fields by **[o]**. Note: This guide deviates from the [DataCite Metadata Schema 4.6 [external link]](https://doi.org/10.14454/csba-e454) in the assessment of recommend and optional properties and assigns different levels of obligation to some of them. They are indicated by an * in the list above.
These fields improve discovery, make long-term management of the datasets easier for the hosting institution and are helpful for future (re-)users of the dataset. The benefits of providing additional information outweigh the effort, as most of the information is already available to researchers like providing a short abstract in the [_description_](#description-m).
### [C. Examples](#c.-examples-1)
* [Digital encyclopedia: "Bayerisches Musiker-Lexikon Online"](#digital-encyclopedia-bayerisches-musiker-lexikon-online)
* [Meteorological project: "ClimEx"](#meteorological-project-climex)
* [Volume as part of a series: "Discourses on Corruption"](#volume-as-part-of-a-series-discourses-on-corruption)
* [Article in a conference proceeding: "High-Energy Physics"](#article-in-a-conference-proceeding-high-energy-physics)
* [Critical editon (digital & print): "Richard Strauss Kritische Werkausgabe"](#critical-editon-digital-print-richard-strauss-kritische-werkausgabe)
* [Digital lexicographical information system: "VerbaAlpina"](#digital-lexicographical-information-system-verbaalpina)
## A. General Best Practice
### What do the metadata describe?
Unless otherwise specified all information in the metadata concerns the research data (also denoted as "resource"), neither the project in whose context the data have been created or collected nor the metadata themselves.
### What is the language of the metadata?
* The default language of the metadata is English. If another language is used, the same information must additionally be specified in English.
* Where language variations are possible (e.g. title, description, affiliations), the language should be specified by _xml:lang_ attributes:
```xml
<title xml:lang="de">
Bayerisches Musiker-Lexikon Online (BMLO)
</title>
<title xml:lang="en" titleType="TranslatedTitle">
Digital Encyclopedia of Bavarian Musicians
</title>
```
* Proper nouns do not need to be translated.
* Use standardized data (e.g. controlled vocabularies) whenever possible. This might allow data aggregators to display the information in the language most suitable to the use case at hand.
* Recommendation: use either the two-letter language codes from ISO 639-1 or the three-letter language codes from ISO 639-2 (listed on [Wikipedia [external link]](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes)). Be advised: the three-letter codes are used in library systems. If you use a different standard (i.e. [BCP 47 [external link]](https://en.wikipedia.org/wiki/IETF_language_tag)), pay attention to be consistent and do not alternate between standards. In any case, DataCite expects a language code confirming to this regular expression pattern `[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*`, which works for most common language codes.
### How should I specify a person?
* A person should be identified by name, persistent ID and affiliation.
* It is recommended to not use titles/academic degrees in names as they are subject to change.
* State the name in the order "family name, given name". For example:
```xml
<creatorName nameType="Personal">Krefeld, Thomas</creatorName>
```
* Recommendation: Additionally, separate family name and given name, each in a specific subfield:
```xml
<givenName>Thomas</givenName>
<familyName>Krefeld</familyName>
```
* Add a persistent identifier for persons, preferably a [GND-ID (Gemeinsame Normdatei) [external link]](https://www.dnb.de/DE/Professionell/Standardisierung/GND/gnd_node.html) or an [ORCID-ID [external link]](https://orcid.org/) (Open Researcher and Contributor ID). This will make attributions robust to changes of names or affiliations:
* Recommendation for GND-ID entries:
* GND-ID entries can be conveniently searched for on [WebGND [external link]](http://gnd.eurospider.com/s) or [lobid-gnd [external link]](https://lobid.org/gnd); for further search options see the [GND website [external link]](https://gnd.network/Webs/gnd/DE/Entdecken/entdecken_node.html).
* Only use individualized GND entries that clearly identify a person (usually by year of birth and/or profession).
```xml
<!-- GND entry -->
<nameIdentifier
schemeURI="https://d-nb.info/gnd/"
nameIdentifierScheme="GND">
123778689
</nameIdentifier>
<!-- ORCID entry -->
<nameIdentifier
schemeURI="http://orcid.org/"
nameIdentifierScheme="ORCID">
0000-0001-9657-6052
</nameIdentifier>
```
* It is also recommended to indicate the affiliation to an institution (Note: An affiliation is an institution, not a project).
* See: [How should I specify an institution](#how-should-i-specify-an-institution)
* If a person has multiple affiliations:
* It is recommended to state only one institution (the context of the resource determines the affiliation).
* If unavoidable, multiple affiliations can be specified in the order of importance for the dataset published.
### How should I specify an institution?
* Institutions may mainly be enterend in _affiliaton_ or _fundingReference_.
* Follow the policy of the institution.
* State the name of the institution as specific as possible (e.g. start with the chair/group, not with the university). If the name of the institution has changed use the name as it was at the time of creation of the resource.
* Start with the more specific organizational units first and end with the most generic unit, separated by semicolon:
```xml
<affiliation xml:lang="de">
Institut für Romanische Philologie;
Ludwig-Maximilians-Universität München
</affiliation>
<affiliation
xml:lang="de"
affiliationIdentifier="https://ror.org/05591te55"
affiliationIdentifierScheme="ROR">
Ludwig-Maximilians-Universität München
</affiliation>
```
* If there is no policy or multiple names in multiple languages are given, use the English name.
* Always specify the language in which the name is given using a _xml:lang_ tag.
```xml
<publisher xml:lang="en">Leibniz Supercomputing Centre</publisher>
<publisher xml:lang="de">Leibniz-Rechenzentrum</publisher>
```
* Affiliations are to be specified as of the time of creation of the resource.
* Add a persistent identifier (PID) for the institution, preferably a [ROR-ID [external link]](https://ror.org/) (Research Organization Registry); if there is no entry in ROR, use a [ISNI-ID [external link]](http://www.isni.org/search) (International Standard Name Identifier) or GND-ID.
* For [research funding](#fundingreference-o) organizations it is recommended to additionally provide the [CrossRef Funder Registry ID [external link]](https://www.crossref.org/services/funder-registry/).
```xml
<fundingReference>
<funderName>Deutsche Forschungsgemeinschaft (DFG)</funderName>
<funderIdentifier
funderIdentifierType="Crossref Funder ID">
http://dx.doi.org/10.13039/501100001659
</funderIdentifier>
</fundingReference>
```
### How should I handle different versions of the same research data?
Metadata can be updated without releasing a new version of the research data, but not vice versa;
if the research data change, you need to update the metadata to reflect these changes.
If you want to publish several versions of the research data, but also want to have a point of reference for all of these publications together, we recommend to use a form of [DOI-versioning [external link]](https://help.zenodo.org/#versioning):
* Specify a set of metadata that is valid for all versions.
* Specify a set of metadata for each version.
* Update all these metadata with the according references (e.g. include *isNewVersionOf* in the metadata of the new version, see [_relatedIdentifier_](#relatedidentifier-r) for details).
## B. Best practice for specific fields
### 1 identifier [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/identifier/)
* This field can be omitted on submission: it is mandatory according to the DataCite standard, but it will be set by the data publisher.
* The assigned Digital Object Identifier (DOI) will be provided to you by the data publisher.
__Example__
```xml
<identifier identifierType="DOI">10.5282/ubm/data.158</identifier>
```
### 2 creator [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/creator/)
* This field is mandatory.
* Consult sections on [how to specify a person](#how-should-i-specify-a-person) and [how to specify a institution](#how-should-i-specify-an-institution).
* Always prefer natural persons over institutions.
* You can use the *xml:lang* attribute to provide the language of the *creatorName*. This may be helpful, if an institution uses different names in different languages.
__Example__
```xml
<creators>
<creator>
<creatorName nameType="Personal">Krefeld, Thomas</creatorName>
<givenName>Thomas</givenName>
<familyName>Krefeld</familyName>
<nameIdentifier
schemeURI="http://orcid.org/"
nameIdentifierScheme="ORCID">
0000-0001-9657-6052
</nameIdentifier>
<nameIdentifier
schemeURI="https://d-nb.info/gnd/"
nameIdentifierScheme="GND">
123778689
</nameIdentifier>
<affiliation
xml:lang="de">
Institut für Romanische Philologie,
Ludwig-Maximilians-Universität München
</affiliation>
</creator>
</creators>
```
### 3 title [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/title/)
* This field is mandatory.
* Be as specific as you would be in the context of a journal publication.
* It is recommended to avoid filenames (e.g. "survey.csv") or generic descriptions (e.g. "survey data") as a title.
* The main title is specified without a _titleType_.
* The language of every title must be specified (see section on [metadata language](#what-is-the-language-of-the-metadata) for the use of _xml:lang_ attribute).
* If the main title is not specified in English, a title of type "TranslatedTitle" must be given in English.
* Title types "AlternativeTitle" and "Subtitle" are supported but not recommended. "Other" must not be used as a title type.
__Example__
```xml
<titles>
<title xml:lang="de">
Bayerisches Musiker-Lexikon Online (BMLO)
</title>
<title
xml:lang="en"
titleType="TranslatedTitle">
Digital Encyclopedia of Bavarian Musicians
</title>
</titles>
```
### 4 publisher [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/publisher/)
* This field is mandatory.
* The language of the publisher name must be specified (see section on [metadata language](#what-is-the-language-of-the-metadata) for the use of _xml:lang_ attribute).
* If possible, the attibutes _publisherIdentifier_, _publisherIdentifierScheme_ and _schemeURI_ should be used.
* This field can be omitted on submission: it is mandatory according to the DataCite standard, but it will be set by the data publisher, i.e. the institution that hosts the (meta)data.
__Example__
```xml
<publisher
xml:lang="de" publisherIdentifier="https://ror.org/05591te55"
publisherIdentifierScheme="ROR" schemeURI="https://ror.org/">
Universitätsbibliothek der Ludwig-Maximilians-Universität München
</publisher>
```
### 5 publicationYear [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/publicationyear/)
* This field is mandatory.
* This field can be omitted on submission: it is mandatory according to the DataCite standard, but it will be set by the data publisher.
__Example__
```xml
<publicationYear>2019</publicationYear>
```
### 6 subject [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/subject/)
* This field is mandatory, in the DataCite standard it is only recommended.
#### Mandatory subject annotations
* The following subject annotations are mandatory (must occur at least once):
|Type of Subject | Standard | Type of standard | Usage hint |
|----------------|-------------------------|---------------------------|----------------------------------------------------------------|
|Discipline | DDC | Classification | Use the English term for the discipline and include the three digit DDC notation via the _classificationCode_ attribute ([Canonical Source [external link]](https://www.oclc.org/content/dam/oclc/dewey/resources/summaries/deweysummaries.pdf)). |
| | | | |
|Keywords | Wikidata QID and GND | Keyword | Wikidata and GND terms are both mandatory, including redundancy (if an appropriate entry does not exist contact the responsible Institution). Use [Wikidata-Search [external link]](https://www.wikidata.org) and [GND-Search [external link]](http://swb.bsz-bw.de/DB=2.104/LNG=EN/) to find the appropriate identifiers.
* It is also mandatory to include at least the _valueURI_ or the _classificationCode_ attribute.
* It is recommended to inculde a *xml:lang* attribute for the *subject*.
* To improve machine-readablility we recommend using **both** _valueURI_ and _classificationCode_.
__Example__
```xml
<subjects>
<!-- discipline specification using Dewey Decimal Classification (DDC) -->
<subject
xml:lang="en"
subjectScheme="DDC"
classificationCode="521">
Celestial mechanics
</subject>
<!-- keywords -->
<subject
xml:lang="en"
subjectScheme="Wikidata QID"
schemeURI="https://www.wikidata.org/wiki/"
valueURI="https://www.wikidata.org/wiki/Q223776"
classificationCode="Q223776">
gravity assist
</subject>
<subject
xml:lang="en"
subjectScheme="GND"
schemeURI="https://d-nb.info/gnd/"
valueURI="https://d-nb.info/gnd/1135686874"
classificationCode="1135686874">
Gravity Assist
</subject>
</subjects>
```
There should be no overlap between the discipline specifier(s) and the keywords.
#### Geotagging
Specifying the location via subject is mandatory, if applicable to the resource:
* Canonical source for geonames is the [GeoNames Service [external link]](http://www.geonames.org/export/web-services.html) (a registration for API access is necessary).
* See [_geoLocation_ section](#geolocation-r) for a more detailed specification.
#### Additional subject annotations
* Additional subjects may be added.
* Specify the language of the subject.
* It is recommended to always qualify subjects by URL or scheme name. A good starting point to research existing schemes is [BARTOC.org [external link]](http://www.bartoc.org/) - Basic Register of Thesauri, Ontologies & Classifications. Unqualified subjects (not controlled by a controlled vocabulary, ontology or any other standard for the subject terms) are often useless for research data aggregators due to ambiguities.
__Example__
For this example a complete DataCite metadata file is available, see [VerbaAlpina](#digital-lexicographical-information-system-verbaalpina).
```xml
<subjects>
<!-- mandatory-->
<subject
xml:lang="en"
subjectScheme="DDC"
classificationCode="410">
Linguistics
</subject>
<subject
xml:lang="en"
subjectScheme="DDC"
classificationCode="004">
Data processing computer science
</subject>
<subject
xml:lang="de"
subjectScheme="GND"
schemeURI="https://d-nb.info/gnd/"
valueURI="https://d-nb.info/gnd/4740815-7"
classificationCode ="4740815-7">
Chalet
</subject>
<subject
xml:lang="en"
subjectScheme="wikidata"
schemeURI="https://www.wikidata.org/wiki/"
valueURI="https://www.wikidata.org/wiki/Q136689"
classificationCode="Q136689">
chalet
</subject>
<subject
xml:lang="fr"
subjectScheme="wikidata"
schemeURI="https://www.wikidata.org/wiki/"
valueURI="https://www.wikidata.org/wiki/Lexeme:L643765"
classificationCode="L643765">
chalet
</subject>
<!-- optional-->
<subject
xml:lang="en"
subjectScheme="Glottocode"
schemeURI="https://glottolog.org/resource/languoid/id/"
valueURI="https://glottolog.org/resource/languoid/id/high1286"
classificationCode="high1286">
High German
</subject>
<subject
xml:lang="de"
subjectScheme="geonames"
schemeURI="http://www.geonames.org/"
valueURI="http://www.geonames.org/2764958"
classificationCode="2764958">
Hall in Tirol
</subject>
</subjects>
```
### 7 contributor [r]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/contributor/)
* This field is recommended if the data are published with a free license.
* If the license specified via the [_rights_](#rights-m) field restricts the usage in a way that possibly necessitates interaction with the rights holder, a _contributor_ of type "RightsHolder" must be specified. Examples of free licenses are CC-0, CC-BY, or CC-SA; non-free licenses are for example CC-NC or CC-ND.
* Consult the sections on [how to specify a person](#how-should-i-specify-a-person) and [how to specify a institution](#how-should-i-specify-an-institution).
* If contributors change over versions, the version metadata should only include the actual contributors of the updated version. A metadata set representing all versions of the dataset (including links to the versions) can include all contributors with the dates of participation, see [how to handle different versions of the research data](#how-should-i-handle-different-versions-of-the-same-research-data).
* Duplicate mentions between _creator_ and _contributor_ are unproblematic.
* If a person has multiple roles, it is recommended to identify the most important role of that person and select only one.
* Be as specific as possible (a "ProjectLeader" is also considered to be a "ProjectMember", but "ProjectLeader" carries more information). Use generic role descriptions only when nothing else fits.
* If suitable use the *xml:lang* attribute to indicate the language of the *contributorName*.
* The following roles are recommended:
|Option | Description from DataCite standard (*italics*) and usage hints |
|-------------------|----------------------------------------------------------------------------|
|ContactPerson | *Person with knowledge of how to access, troubleshoot, or otherwise field issues related to the resource.*|
| | |
|DataCollector | *Person/institution responsible for finding, gathering/collecting data under the guidelines of the author(s) or Principal Investigator (PI).*|
| | |
|DataCurator | *Person tasked with reviewing, enhancing, cleaning, or standardizing metadata and the associated data submitted for storage, use, and maintenance within a data centre or repository.*|
| | |
|DataManager | Person or organization responsible for digital maintainance of the finished resource, e.g. migration to new hardware, software and security updates for servers, access rights management.|
| | |
|Distributor | Institution responsible for dissemination of electronic or printed copies of the resource. The distributor is not neccessarily also a hosting institution of a digital resource, e.g., if server hosting is outsourced but the distributor still organizes access to the resource.|
| | |
|Editor | *A person who oversees the details related to the publication format of the resource.*|
| | |
|HostingInstitution| *Typically, the organisation allowing the resource to be available on the internet through the provision of its hardware/software/operating support.*|
| | |
|ProjectLeader | *Person officially designated as head of project team or sub-project team instrumental in the work necessary to development of the resource.*|
| | |
|ProjectManager | *Person officially designated as manager of a project. Project may consist of one or many project teams and sub-teams.*|
| | |
|ProjectMember | *Person on the membership list of a designated project/project team.* All persons with a contract in the context of the project which produced the resource.|
| | |
|Researcher | *A person involved in analyzing data or the results of an experiment or formal study. May indicate an intern or assistant to one of the authors who helped with research but who was not so “key” as to be listed as an author.*|
| | |
|ResearchGroup | *Typically refers to a group of individuals within a lab, department or division that has a specifically defined focus of activity.*|
| | |
|RightsHolder | *Person or institution owning or managing property rights, including intellectual property rights over the resource.* Mandatory for non-free licenses; person or institution that owns the rights listed in field [Rights](#rights-m). |
| | |
|Sponsor | *Organization or person that issued a contract or under the auspices of which a work has been printed, published, developed, etc.*|
| | |
|Supervisor | *Designated administrator over one or more groups/teams working to produce a resource, or over one or more steps of a development process.* We recommmed using this role for PhD advisors of the creators, who did not particiate as creators or in other roles themselves.|
| | |
|Translator | *A person, organization, or automated system responsible for converting the content of a resource from one language into another, preserving its meaning and intended message.*|
| | |
|WorkPackage- \ Leader | *The Work Package Leader is responsible for ensuring the comprehensive contents, versioning, and availability of the Work Package during the development of the resource.*|
__Example__
```xml
<contributors>
<contributor contributorType="ProjectLeader">
<contributorName nameType="Personal">Ludwig, Ralf</contributorName>
<givenName>Ralf</givenName>
<familyName>Ludwig</familyName>
<nameIdentifier
nameIdentifierScheme="ORCID"
schemeURI="http://orcid.org/">
0000-0002-4225-4098
</nameIdentifier>
<affiliation xml:lang="de">
Department für Geographie,
Ludwig-Maximilians-Universität München
</affiliation>
</contributor>
<contributor contributorType="RightsHolder">
<contributorName nameType="Personal">
Štědronská, Markéta
</contributorName>
<givenName>Markéta</givenName>
<familyName>Štědronská</familyName>
<nameIdentifier
nameIdentifierScheme="GND"
schemeURI="https://d-nb.info/gnd/">
141321350
</nameIdentifier>
<affiliation xml:lang="de">
Institut für Musikwissenschaft, Universität Wien
</affiliation>
</contributor>
</contributors>
```
### 8 date [r]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/date/)
* This field is recommended.
* It is recommended to provide date and time according to the [W3C time and data formats [external link]](https://www.w3.org/TR/NOTE-datetime). If the time is specified always include the time zone.
* Time periods can be specified by specifying the start date and the end date separated by a slash (/).
* The following types should be filled-out by the data producer:
* **Collected**: time range when the resource was arranged (not necessarily identical to the time range when the resource was created).
* **Covered**: date range that the resource content applies to or covers. (Example: A text corpus of newspaper articles about a historic event will *cover* a time span (associated with the event). The corpus can be *collected* over a different time span.)
* **Created**: first version of a resource; must not be identical with updated.
* **Updated**: for a more recent version of the resource; must not be identical with created.
* The following types are set by the publisher:
* **Submitted**: point in time when the data were recieved by the data publisher.
* **Accepted**: point in time when the data publisher accepts the data for publication.
* **Issued**: long format of the field [_publicationYear_](#publicationyear-m), point in time when a publisher publishes the data; should be set.
* **Available**: only use in the context of embargo periods (this is not recommended).
* **Withdrawn**: point in time when the publisher retracts the data publication.
* For dates describing the period the resource covers use "Other" for _dateType_ and add "coverage" as a description under _datesInformation_, see example below.
* It is recommended to use the free text attribute _dateInformation_ for disambiguation, if multiple dates with the same type are specified.
* "Copyrighted" as a _dateType_ should not be used.
__Example__
```xml
<dates>
<date dateType="Created">2016</date>
<date
dateType="Other"
dateInformation="coverage">
2050-09-01T00:00:00+01:00/2050-09-30T23:59:59+01:00
</date>
</dates>
```
### 9 language [o]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/language/)
* This field is optional.
* The field describes the main language of the **resource**, not of the metadata.
* Recommendation: use either the two-letter language codes from ISO 639-1 or the three-letter language codes from ISO 639-2 (listed on [Wikipedia [external link]](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes)). Be advised: the three-letter codes are used in library systems.
__Example__
```xml
<language>en</language>
```
### 10 resourceType [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/resourcetype/)
* This field is mandatory.
* DateCite allows various resource types.
* There are three goups of resources described by the metadata: Objects and instruments, discursive text, and research data.
Decision tree to pick the right _resourceTypeGeneral_:
1. If you describe a physical object (biological sample, fragment of a meteorite) or an instrument (a book scanner, a microscope) use "PhysicalObject" and "Instrument", respectively. If not, proceed with 2.
2. Decide if the resource is data or discursive text (e.g. journal article or analytical text). If it is discursive text, choose one of the following:
* Book
* BookChapter
* ConferencePaper
* ConferenceProceeding
* DataPaper
* Dissertation
* Journal
* JournalArticle
* OutputManagementPlan [Note: A data management plan is a special form of output management plan]
* PeerReview
* Preprint
* Report
* Standard
* StudyRegistration
If not: Proceed with 3.
3. If the data submission contains heterogeneous data, consider publishing it in separate data publications or (less preferred) use "Collection". If the data are homogeneous, proceed with 4.
4. If the data are movies, images or sound files use "Audiovisual", "Image" or "Sound", respectively. If not, proceed with 5.
5. If the data are a digital, interactive representations of some real-world phenomena (e.g. trained models in the context of machine learning) use "Model". If not, proceed with 6.
6. If the data are descriptions of a workflow (e.g. in the common workflow language), use "Workflow". If not, proceed with 7.
7. If the data are an interactive resource like a virtual notebook use "ComputationalNotebook". If not, proceed with 8.
8. If the data are source code files (incl. configuration and built artefacts), use "Software". If not, proceed with 9.
9. If the data have a fixed structure (e.g. table-like), use "Dataset". If not, proceed with 10.
10. If the data are text files, use "Text". If not, proceed with 11.
11. Check if one of the following types is applicable:
* Award (Use this one if, for example, the resource is an entry in a Current Research Information System (CRIS) that details a Leibniz Prize awarded to a staff member.)
* Event (For example, for a conference or an award ceremony.)
* InteractiveResource (This type can be used for interactive tutorials in a learning management system or for certain websites.)
* Project (If, for example, a project is funded by DFG the corresponding [GEPRIS [external link]](https://gepris.dfg.de/gepris/OCTOPUS) entry would be assigned the _resourceTypeGeneral_ *Project*.)
* Service (For example, if a university IT center offers access to an LLM running on its servers, this would be a "Service". Note that the LLM code itself would be "Software")
If not, proceed with 12.
12. Use "Other".
**Note**: Only items with the _resourceTypeGeneral_ "Dataset" will be included in the Google Dataset Search. All other types are currently not supported.
__Examples__
```xml
<resourceType resourceTypeGeneral="Dataset">
Regional Climate Measurements
</resourceType>
```
```xml
<resourceType resourceTypeGeneral="OutputManagementPlan">
Data Management Plan
</resourceType>
```
### 11 alternateIdentifier [o]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/alternateidentifier/)
* This field is optional.
* These alternate IDs additionally identify the resource, meaning that it can also be found via these identifiers and distinguished from other resources by this ID.
* The _alternateIdentifier_ can be a persistent, globally unique ID. However, the field may also be used for identifiers, which are only unique and specific in the context of the research project (e.g. local identifiers or workspace identifiers) but not globally. Examples for alternate identifiers are sequence numbers, time stamps or database numbers. Contrary, the global identifier in field [_identifier_](#identifier-m) **must** be a DOI.
* The attribute _alternateIdentifierType_ must be used to specifiy the type of the identifer.
__Recommendation for _alternateIdentifierType_:__
For common global identifers, just specify the name of the identifier or its acronym. Examples of such identifiers are: ARK, arXiv, bibcode, CSTR, DOI, EAN13, EISSN, ePIC, Handle, IGSN, ISBN, ISSN, ISTC, LISSN, LSID, PMID, PURL, RRID, UPC, URL, URN, and w3id.
For other identifiers we recommend to first give the origin of the ID:
* project-specific identifier: an ID that has meaning inside the project that created the data.
* application-specific identifier: an ID that has meaning in the context of an application that is used to process the data.
* institution-specific identifier: an ID that has meaning in the context of the institution that provides, funded or created the data.
and then add, separated by a slash (/), the name of the identifer, if known.
This way, even if the name of the ID is relatively obscure, the broader context of the ID can still be identified.
__Example__
Each VerbaAlpina dataset is assigned an [internal ID [external link]](https://doi.org/10.5282/verba-alpina?urlappend=%3Fpage_id%3D12180%26db%3Dxxx%26single%3DL91 ) (a project-specific identifier) as well as a persistent [LMU-UB ID [external link]](https://discover.ub.uni-muenchen.de/catalog/68fd5294-9077-3983-a20e-7f25c074c4c7) (in short lmUB - an institution-specific identifier) by the data repository.
```xml
<alternateIdentifiers>
<alternateIdentifier
alternateIdentifierType="institution-specific identifier/lmUB">
68fd5294-9077-3983-a20e-7f25c074c4c7
</alternateIdentifier>
<alternateIdentifier
alternateIdentifierType="project-specific identifier/VA-ID">
L91_v8
</alternateIdentifier>
</alternateIdentifiers>
```
### 12 relatedIdentifier [r]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/relatedidentifier/)
Note that DataCite provides two separate elements to establish relationships between resources: _relatedIdentifier_ and [_relatedItem_](#relateditem-o).
The *relatedIdentifier* element should be used for machine-readable identifiers (like DOI, PubMed ID or ISBN). This identifier points to additional information on the related resource. It is recommended as it facilitates automated discovery of the described resource.
The element [_relatedItem_](#relateditem-oa) can be used for information on a related object that does not have an identifier (e.g. conference contributions or book series). It is also useful if an identifier exists but one wants to provide additional, more specific information on the related resource, e.g. to provide the page number, volume and title of a journal.
* This field is recommended.
* If possible, relations of the described resource should be mirrored in the metadata of the related resource. For example, make sure that a paper referencing a dataset includes the identifier of the dataset in its metadata and vice versa. This also applies to all reciprocal _relationTypes_ (e.g. "IsNewVersionOf" and "IsPreviousVersionOf").
* The _relatedIdentifierType_ must be taken from a [fixed list [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/appendices/appendix-1/relatedIdentifierType/): ARK, arXiv, bibcode, CSTR, DOI, EAN13, EISSN, Handle, IGSN, ISBN, ISSN, ISTC, LISSN, LSID, PMID, PURL, RRID, UPC, URL, URN, w3id.
* The publisher may curate the list of _relatedIdentifiers_ (e.g. adding relevant related resources over time on a best effort basis).
* The relations are always specified from the perspective of the described resource (refered to as resource A in the examples). The related resource is called resource B in the examples. For detailed definitions of all relationTypes see the [DataCite schema documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/appendices/appendix-1/relationType/)

* Only use these _relationTypes_:
::: {.landscape}
#### relationTypes
|Relation categories | Usage | relationType | Guidance / Example |
|-----------------|-------------------|-----------------------|----------------------------------------------------------------------------|
|Versions|Use to differentiate specific and unspecific versions of a resource |HasVersion (IsVersionOf); IsNewVersionOf (IsPreviousVersionOf); IsVariantFormOf (IsOriginalFormOf); IsIdenticalTo; Obsoletes (IsObsoletedBy)|Be as specific as possible. Use "NewVersion" and "PreviousVersion" if A is the predecessor or successor of B; use of "Obsolets" and "IsObsoletedBy" is recommended for standards, legal regulations, etc. If the version is unspecific use "HasVersion" and "IsVersionOf".|
| | | | |
|Hierarchy|Use to create hierarchical relationships|IsPartOf (HasPart)| "HasPart" indicates A includes the part B; "IsPart" indicates A is a portion of B. Example: a container "HasPart" a dataset.|
| | | | |
|Provenance|Use to refer to source materials (for software also see below)| HasTranslation (IsTranslationOf); IsSourceOf; IsDerivedFrom; Continues (IsContinuedBy); Collects (IsCollectedBy) |Examples: A book in English (resource A) "IsTranslationOf" a work written in Spanish (resource B). Volume 2 of a book series (resource A) "Continues" volume 1 (resource B). A dataset (resource A) "IsSourceOf" a diagram (resource B). An Instrument (resource A), e.g. a microscope, "Collects" an image set (resource B); a PhysicalObject (resource A) "isCollectedBy" an Instrument (resource B).|
| | | | |
|Complemen-tary (for software see below)| Use for resources that build on or complement each other |IsSourceOf; IsDerivedFrom; Continues (IsContinuedBy); IsSupplementTo (IsSupplementedBy)|Examples: Volume 2 of a book series (resource A) "Continues" volume 1 (resource B). A computer notebook (resource A) "IsSupplementTo" an article (resource B).|
| | | | |
|Bibliographic|Use to relate published texts/ material |IsPublishedIn; References (IsReferencedBy); Cites (IsCitedBy)|Examples: An article (resource A) "IsPublishedIn" an edited volume (resource B), e.g., conference proceedings. A presentation (resource A) "References" a dataset (resource B) when discussing a plot.|
| | | | |
|Additional information|Use for resources that provide further information on the described resource |Documents (IsDocumentedBy); HasMetadata (IsMetadataFor); Describes (IsDescribedBy); Reviews (IsReviewedBy)|A digtital representation of a painting (resource A) "HasMetadata" in Europeana (Resource B). An article (resource A) "isDescribedBy" a PubMed entry (resource B). |
| | | | |
|Software specific| Requires can be used to indicate software dependencies. Compiles relates software code and compiler.|Requires (IsRequiredBy); Compiles (IsCompiledBy)| A piece of code (resource A) "Requires" a software library (resource B).|
:::
__Example 1 (DOI)__
The ClimEx Project "IsDescribedBy" an article in the Journal of Applied Meteorology and Climatology. The article's DOI is [10.1175/JAMC-D-18-0021.1](https://doi.org/10.1175/JAMC-D-18-0021.1). For the full DataCite metadata for this example see [ClimEx](#meteorological-project-climex) below.
```xml
<relatedIdentifiers>
<relatedIdentifier
relatedIdentifierType="DOI"
relationType="IsDescribedBy">
10.1175/JAMC-D-18-0021.1
</relatedIdentifier>
</relatedIdentifiers>
```
__Example 2 (PubMed)__
PubMed provides a description and additional information on an article published in the journal Nature. The article "IsDescribedBy" a PubMed entry.
```xml
<relatedIdentifiers>
<relatedIdentifier
relatedIdentifierType="PMID"
relationType="IsDescribedBy">
34552256
</relatedIdentifier>
<relatedIdentifier
relatedIdentifierType="arXiv"
relationType="IsNewVersionOf">
arXiv:2107.02222
</relatedIdentifier>
</relatedIdentifiers>
```
__Example 3 (Wikidata)__
Wikidata provides metadata for the BMLO project and dataset. Thus, BMLO "HasMetadata" in Wikidata under [Q-ID 47191](https://www.wikidata.org/wiki/Q47191).
```xml
<relatedIdentifiers>
<relatedIdentifier
relatedIdentifierType="URL"
relationType="HasMetadata"
subjectScheme="wikidata"
schemeURI="https://www.wikidata.org/wiki/">
Q47191
</relatedIdentifier>
</relatedIdentifiers>
```
__Example 4 (Pangaea)__
Pangaea publishes datasets in the field of Earth & Environmental Science. Pangaea shows the sources that were used during the creation of the research dataset, similar to a list of references. For the full DataCite metadata for this example see [DataCite Search](https://commons.datacite.org/doi.org/10.1594/pangaea.941445).
```xml
<relatedIdentifiers>
<relatedIdentifier
relationType="References"
relatedIdentifierType="DOI">
10.1016/0034-6667(75)90049-4
</relatedIdentifier>
<relatedIdentifier
relationType="References"
relatedIdentifierType="DOI">
10.1016/j.revpalbo.2020.104236
</relatedIdentifier>
<relatedIdentifier
relationType="References"
relatedIdentifierType="DOI">
10.1016/j.revpalbo.2019.02.004
</relatedIdentifier>
<relatedIdentifier
relationType="References"
relatedIdentifierType="DOI">
10.1080/01916122.2014.940472
</relatedIdentifier>
<relatedIdentifier
relationType="References"
relatedIdentifierType="DOI">
10.1191/095968398671104653
</relatedIdentifier>
<relatedIdentifier
relationType="References"
relatedIdentifierType="Handle">
1885/144170
</relatedIdentifier>
</relatedIdentifiers>
```
### 13 size [r]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/size/)
* This field is recommended, whereas it is optional in the DataCite standard.
* This field is repeatable. Thus, different measures for the size / volume of the dataset can be given.
* If you make use of this field, always specify the size in Bytes (denoted by 'B' - note that a lower case 'b' stands for bit). Prefered are: kB, MB, GB, TB etc. Separate number and unit with one space. The decimal separator must be the decimal point, e.g., *7.23 GB*.
* If the data are compressed, specify the size of the compressed file/archive.
* If the data consist of several units (without using an archival software), specify their combined sizes.
* Further information on the data size (e.g. runtime of an audio file or number of images) can be given in a separate _size_ field as free text. Note that such information can also be given in the [_description_](#description-m).
__Example__
```xml
<sizes>
<size>7.23 GB</size>
<size>34 min (length audio file)</size>
</sizes>
```
### 14 format [o]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/format/)
* This field is optional.
* Use MIME type format as specified in [RFC 2646 [external link]](https://tools.ietf.org/html/rfc2046), possible values should be taken from [the IANA list of Media Types [external link]](https://www.iana.org/assignments/media-types/media-types.xhtml).
Specify in this order (skip if it does not apply):
1. If files are compressed, append the MIME type of the compressed file to the MIME type of the uncompressed file using a "+" sign (e.g. text/xml+zip).
2. If files are in an archive, specify the MIME type of the archive format, for example "application/tar". This information is useful to determine in advance which software tools are needed to access the archived files.
3. Specify each MIME type in a separate field in alphabetical order, do not repeat MIME types.
__Example__
```xml
<formats>
<format>application/tar+gzip</format>
<format>application/netcdf</format>
<format>text/plain</format>
<format>text/csv</format>
</formats>
```
### 15 version [o]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/version/)
* This field is optional.
* Note that this field refers to the **version of the resource**, not the version of the metadata.
* The versioning information is set according to the policies of the data provider (data publishers do not change/use this field).
* It is recommended to use [semantic versioning [external link]](https://semver.org/). Up to three labels are supported (Major, Minor, Patch). Depending on the resource, only one or two labels might be needed.
__Example 1 (two labels - Major.Minor)__
```xml
<version>4.2</version>
```
__Example 2 (three labels - Major.Minor.Patch)__
```xml
<version>4.2.1</version>
```
### 16 rights [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/rights/)
* This field is mandatory, whereas the DataCite standard specifies it as optional.
* If applicable, *rightsURI* must be set.
* To avoid inconsistencies only assign a single license to the described dataset or the described software code.
* It is not recommended to publish both research data and software code as part of a single publication (consider two separate publications, see [*resourceType*](#resourcetype-m)).
Guidance for using a license:
* Recommendation: [Creative Commons (CC) [external link]](https://creativecommons.org/) as license for data and [Apache 2.0 license [external link]](http://www.apache.org/licenses/LICENSE-2.0) for software.
* Use the standardized short identifier list provided by [SPDX [external link]](https://spdx.org/license-list/) to specify the license in the _rightsIdentifier_ attribute.
* You should not use CC licenses with the NC or ND limitation to ensure reusability (although submissions with these limitations are accepted).
* For further license options consult [Choose a license [external link]](https://choosealicense.com/) or the [CC license helper [external link]](https://creativecommons.org/choose/).
__Example 1 (Dataset)__
```xml
<rightsList>
<rights
xml:lang="en-US"
schemeURI="https://spdx.org/licenses/"
rightsIdentifierScheme="SPDX"
rightsIdentifier="CC0-1.0"
rightsURI="http://creativecommons.org/publicdomain/zero/1.0/">
CC0 1.0
</rights>
</rightsList>
```
__Example 2 (Software)__
```xml
<rightsList>
<rights
xml:lang="en-US"
schemeURI="https://spdx.org/licenses/"
rightsIdentifierScheme="SPDX"
rightsIdentifier="Apache-2.0"
rightsURI="https://www.apache.org/licenses/LICENSE-2.0">
Apache License 2.0
</rights>
</rightsList>
```
### 17 description [m]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/description/)
* This field is mandatory, whereas the DataCite standard only recommends it: There has to be at least one entry of type "Abstract" in English.
* Always specify the used language (_xml:lang_ attribute) of each description.
* If there are descriptions in more than one language, the content may be different (no literal translation required).
* Each description has a limit of 300 words.
* Description of _descriptionType_ "Methods" is optional. Best practice: use keywords from [this controlled list](https://gitlab.lrz.de/RDMMUC/datacite/blob/master/Description_Methods.md), separated by comma.
* Description of _descriptionType_ "TechnicalInfo" is optional. Best practice: use keywords from [this controlled list](https://gitlab.lrz.de/RDMMUC/datacite/blob/master/Description_TechnicalInfo.md), separated by comma. Additionally, data producers could consider creating a README file and link it via the [_relatedIdentifier_](#12-relatedidentifier-r) field.
* These types are not recommended:
* SeriesInformation (If needed, information on series title, volume, issue, or page number should be provided via the [_relatedItem_](#relateditem-o) field.)
* TableOfContents
* Other
__Example__
```xml
<descriptions>
<description xml:lang="en" descriptionType="Abstract">
The “Kritische Ausgabe der Werke von Richard Strauss”, a
long-term editorial project, has been under way at the
Institut für Musikwissenschaft of the Ludwig-Maximilians-
Universität Munich since 2011; it is directed by ...
</description>
<description xml:lang="de" descriptionType="Abstract">
Das Langzeit-Editionsprojekt „Kritische Ausgabe der Werke von
Richard Strauss“ wird seit Februar 2011 unter der Leitung von
Prof. Dr. Hartmut Schick am Institut für Musikwissenschaft der
Ludwig-Maximilians-Universität München ...
</description>
<description xml:lang="en" descriptionType="Methods">
digital editing, software/application development
</description>
</descriptions>
```
### 18 geoLocation [r]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/geolocation/)
* This field is recommended where applicable.
* Describes the resource (e.g. where an image has been taken or where a sensor is located), *not* the related project or institute, if the former is not applicable, do **not** use it for the latter.
* _geoLocationPlace_ must be identical to corresponding GeoNames field in the [_subjects_](#6-subject-m), consult the [geotagging](#geotagging) subsection.
* Canonical source for coordinates is the [GeoNames Service [external link]](http://www.geonames.org/export/web-services.html).
__Examples__
* *geoLocationPlace* and *geoLocationPolygon*:
```xml
<geoLocations>
<geoLocation>
<geoLocationPlace>Höslwang</geoLocationPlace>
<geoLocationPolygon>
<polygonPoint>
<pointLatitude>47.9231796264648</pointLatitude>
<pointLongitude>12.2860469818115</pointLongitude>
</polygonPoint>
<polygonPoint>
<pointLatitude>47.9231796264648</pointLatitude>
<pointLongitude>12.3512439727784</pointLongitude>
</polygonPoint>
<polygonPoint>
<pointLatitude>47.9707412719727</pointLatitude>
<pointLongitude>12.3512439727784</pointLongitude>
</polygonPoint>
<polygonPoint>
<pointLatitude>47.9707412719727</pointLatitude>
<pointLongitude>12.2860469818115</pointLongitude>
</polygonPoint>
<polygonPoint>
<pointLatitude>47.9231796264648</pointLatitude>
<pointLongitude>12.2860469818115</pointLongitude>
</polygonPoint>
</geoLocationPolygon>
</geoLocation>
</geoLocations>
```
* *geoLocationPlace* and *geoLocationBox*:
```xml
<geoLocations>
<geoLocation>
<geoLocationPlace>Hall in Tirol</geoLocationPlace>
<geoLocationPoint>
<pointLongitude>11.51667</pointLongitude>
<pointLatitude>47.28333</pointLatitude>
</geoLocationPoint>
<geoLocationBox>
<westBoundLongitude>11.5272636413574</westBoundLongitude>
<eastBoundLongitude>11.4707803726196</eastBoundLongitude>
<southBoundLatitude>47.2697830200196</southBoundLatitude>
<northBoundLatitude>47.2893867492676</northBoundLatitude>
</geoLocationBox>
</geoLocation>
</geoLocations>
```
### 19 fundingReference [o]
[DataCite documentation [external link]](https://datacite-metadata-schema.readthedocs.io/en/4.6/properties/fundingreference/)
* This field is optional.
* This is the place to add information about the project and its funding.