-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathopenapi.yaml
3385 lines (3382 loc) · 108 KB
/
openapi.yaml
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
openapi: 3.0.0
info:
title: REST API
description: The REST API is used for all API interactions with DataCite services.
contact:
name: DataCite Support
url: 'https://support.datacite.org'
email: [email protected]
license:
name: MIT
url: 'https://raw.githubusercontent.com/datacite/lupo/master/LICENSE'
version: 2.3.0
servers:
- url: 'https://api.test.datacite.org'
description: Staging server
- url: 'https://api.datacite.org'
description: Production server
tags:
- name: activities
description: Activities
- name: client-prefixes
description: Client Prefixes
- name: clients
description: Clients
- name: dois
description: DOIs
- name: events
description: Events
- name: heartbeat
description: Heartbeat
- name: prefixes
description: Prefixes
- name: provider-prefixes
description: Provider Prefixes
- name: providers
description: Providers
- name: reports
description: Reports
paths:
/activities:
get:
tags:
- activities
summary: Get a JSON API result of activities.
security: []
parameters:
- in: query
name: id
description: Find activity by an ID.
required: false
schema:
type: string
- in: query
name: ids
description: Find activities by array of activity IDs.
required: false
schema:
type: array
items:
type: string
- in: query
name: query
description: Search the index by keyword or query string syntax.
required: false
schema:
type: string
- in: query
$ref: '#/components/parameters/pageNumberParam'
- in: query
$ref: '#/components/parameters/pageSizeParam'
- in: query
$ref: '#/components/parameters/pageCursorParam'
responses:
'200':
description: A JSON API result of activities.
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Activity'
meta:
allOf:
- $ref: '#/components/schemas/MetaCore'
links:
allOf:
- $ref: '#/components/schemas/Links'
'/activities/{id}':
get:
parameters:
- name: id
in: path
description: Activity ID.
required: true
schema:
type: string
tags:
- activities
summary: Get a JSON API result of a specific activity.
responses:
'200':
description: A JSON object.
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
type: object
$ref: '#/components/schemas/Activity'
/client-prefixes:
get:
tags:
- client-prefixes
summary: Return a list of client-prefixes.
parameters:
- in: query
name: query
schema:
type: string
- in: query
name: year
schema:
type: integer
- in: query
$ref: '#/components/parameters/clientIdParam'
- in: query
name: prefix-id
schema:
type: string
- in: query
$ref: '#/components/parameters/pageNumberParam'
- in: query
$ref: '#/components/parameters/pageSizeParam'
- in: query
name: sort
schema:
type: string
enum:
- name
- '-name'
- created
- '-created'
responses:
'200':
description: A JSON array of client-prefixes.
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/ClientPrefix'
meta:
allOf:
- $ref: '#/components/schemas/MetaCore'
- type: object
properties:
years:
allOf:
- $ref: '#/components/schemas/MetaArray'
providers:
type: array
clients:
type: array
links:
allOf:
- $ref: '#/components/schemas/Links'
/clients:
get:
tags:
- clients
summary: Return a list of clients (repositories).
parameters:
- in: query
name: query
schema:
type: string
- in: query
name: year
description: The year the client was created.
schema:
type: integer
- in: query
$ref: '#/components/parameters/providerIdParam'
- in: query
name: software
schema:
type: string
enum:
- cayuse
- ckan
- dataverse
- dlibra
- dspace
- eprints
- ex libris esploro
- fedora
- invenio
- islandora
- mycore
- nesstar
- omega-psir
- omeka s
- open journal systems (ojs)
- opus
- pubman
- pure
- redivis
- samvera
- ubiquity
- other
- unknown
- in: query
name: client-type
schema:
$ref: '#/components/schemas/client-type'
- in: query
name: repository-type
schema:
type: string
enum:
- disciplinary
- governmental
- institutional
- multidisciplinary
- project-related
- other
- in: query
name: certificate
schema:
type: array
items:
$ref: '#/components/schemas/certificate'
explode: false
style: form
- in: query
$ref: '#/components/parameters/pageNumberParam'
- in: query
$ref: '#/components/parameters/pageSizeParam'
- in: query
name: include
schema:
type: string
enum:
- provider
- repository
- in: query
name: sort
schema:
type: string
enum:
- relevance
- name
- '-name'
- created
- '-created'
responses:
'200':
description: A JSON array of clients.
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Client'
meta:
allOf:
- $ref: '#/components/schemas/MetaCore'
- type: object
properties:
years:
allOf:
- $ref: '#/components/schemas/MetaArray'
providers:
allOf:
- $ref: '#/components/schemas/MetaArray'
software:
allOf:
- $ref: '#/components/schemas/MetaArray'
certificates:
allOf:
- $ref: '#/components/schemas/MetaArray'
repository_types:
allOf:
- $ref: '#/components/schemas/MetaArray'
clientTypes:
allOf:
- $ref: '#/components/schemas/MetaArray'
links:
allOf:
- $ref: '#/components/schemas/Links'
/clients/totals:
get:
tags:
- clients
summary: Return clients DOI production statistics.
parameters:
- in: query
$ref: '#/components/parameters/providerIdParam'
- in: query
name: state
schema:
type: array
items:
$ref: '#/components/schemas/state'
description: Authentication is required to retrieve draft records.
explode: false
style: form
responses:
'200':
description: A JSON array of clients stats.
content:
application/vnd.api+json:
schema:
type: array
items:
$ref: '#/components/schemas/TotalsObject'
'/clients/{id}':
get:
parameters:
- name: id
in: path
description: DataCite Repository account ID.
required: true
schema:
type: string
tags:
- clients
summary: Return a client.
responses:
'200':
description: A JSON object.
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
type: object
$ref: '#/components/schemas/Client'
/dois:
get:
tags:
- dois
summary: Return a list of DOIs.
parameters:
- in: query
name: query
description: Search [DOI metadata fields](https://support.datacite.org/docs/api-queries#using-the-query-parameter) using OpenSearch query string syntax.
schema:
type: string
- in: query
name: created
description: Filter by the DOI date created (yyyy). Use commas to filter by multiple years (yyyy,yyyy).
schema:
type: string
pattern: ^\d{4}(,\d{4})*$
- in: query
name: registered
description: Filter by the DOI date registered (yyyy). Use commas to filter by multiple years (yyyy,yyyy).
schema:
type: string
pattern: ^\d{4}(,\d{4})*$
- in: query
name: published
description: Filter by the DOI date published (yyyy). Use commas to filter by multiple years (yyyy,yyyy).
schema:
type: string
pattern: ^\d{4}(,\d{4})*$
- in: query
$ref: '#/components/parameters/providerIdParam'
- in: query
$ref: '#/components/parameters/clientIdParam'
- in: query
$ref: '#/components/parameters/consortiumIdParam'
- in: query
name: prefix
description: Filter by a specific prefix. Use commmas to include multiple prefixes.
schema:
type: string
example: 10.5438
- in: query
name: client-type
schema:
$ref: '#/components/schemas/client-type'
- in: query
name: certificate
schema:
type: array
items:
$ref: '#/components/schemas/certificate'
explode: false
style: form
- in: query
name: affiliation-id
description: Search creators.affiliation.affiliationIdentifier and contributors.affiliation.affiliationIdentifier for a ROR ID.
schema:
type: string
- in: query
name: funder-id
description: Search fundingReferences.funderIdentifier for a Crossref Funder ID.
schema:
type: string
- in: query
name: user-id
description: Search creators.nameIdentifiers.nameIdentifier for an ORCID iD.
schema:
type: string
- in: query
name: resource-type-id
description: Filter by the resourceTypeGeneral. Use commmas to include multiple values.
schema:
type: array
items:
type: string
enum:
- audiovisual
- book
- book-chapter
- collection
- computational-notebook
- conference-paper
- conference-proceeding
- data-paper
- dataset
- dissertation
- event
- image
- instrument
- interactive-resource
- journal
- journal-article
- model
- output-management-plan
- peer-review
- physical-object
- preprint
- report
- service
- software
- sound
- standard
- study-registration
- text
- workflow
- other
explode: false
style: form
- in: query
name: resource-type
description: Filter by the free text resourceType. Use commmas to include multiple values.
schema:
type: string
- in: query
name: subject
description: Filter by the free text Subject. Use commmas to include multiple terms.
schema:
type: string
- in: query
name: field-of-science
schema:
type: string
- in: query
name: license
schema:
type: string
- in: query
name: schema-version
schema:
type: string
example: 4
- in: query
name: state
description: Filter by the [DOI state](https://support.datacite.org/docs/doi-states). Authentication is required to retrieve registered DOIs and draft records.
schema:
type: array
items:
$ref: '#/components/schemas/state'
explode: false
style: form
examples:
findable:
value: findable
findable or registered:
value: findable,registered
- in: query
$ref: '#/components/parameters/affiliationParam'
- in: query
$ref: '#/components/parameters/publisherParam'
- in: query
name: link-check-status
schema:
type: string
enum:
- 200
- 400
- 401
- 403
- 404
- 410
- 429
- 500
- 502
- 503
- in: query
name: has-citations
description: Search the citationCount field for integer values greater than or equal to the inputted value.
schema:
type: integer
- in: query
name: has-references
description: Search the referenceCount field for integer values greater than or equal to the inputted value.
schema:
type: integer
- in: query
name: has-parts
description: Search the partCount field for integer values greater than or equal to the inputted value.
schema:
type: integer
- in: query
name: has-part-of
description: Search the partOfCount field for integer values greater than or equal to the inputted value.
schema:
type: integer
- in: query
name: has-versions
description: Search the versionCount field for integer values greater than or equal to the inputted value.
schema:
type: integer
- in: query
name: has-version-of
description: Search the versionOfCount field for integer values greater than or equal to the inputted value.
schema:
type: integer
- in: query
name: has-views
description: Search the viewCount field for integer values greater than or equal to the inputted value.
schema:
type: integer
- in: query
name: has-downloads
description: Search the downloadCount field for integer values greater than or equal to the inputted value.
schema:
type: integer
- in: query
name: has-person
description: Return DOIs where creators.nameIdentifiers.nameIdentifierScheme has at least one "ORCID" value.
schema:
type: boolean
- in: query
name: has-affiliation
description: Return DOIs where either creators.affiliation.affiliationIdentifierScheme or contributors.affiliation.affiliationIdentifierScheme has at least one "ROR" value.
schema:
type: boolean
- in: query
name: has-organization
description: Return DOIs where either creators.nameIdentifiers.nameIdentifierScheme or contributors.nameIdentifiers.nameIdentifierScheme has at least one "ROR" value.
schema:
type: boolean
- in: query
name: has-funder
description: Return DOIs where fundingReferences.funderIdentifierType has at least one "Crossref Funder ID" value.
schema:
type: boolean
- in: query
name: random
description: Retreive a random sample of DOIs. When true, the `page[number]` parameter is ignored.
schema:
type: boolean
- in: query
name: sample-size
schema:
type: integer
minimum: 1
maximum: 1000
- in: query
name: sample-group
schema:
type: string
enum:
- client
- provider
- resource-type
- in: query
$ref: '#/components/parameters/pageNumberParam'
- in: query
$ref: '#/components/parameters/pageSizeParam'
- in: query
$ref: '#/components/parameters/pageCursorParam'
- in: query
name: include
schema:
type: string
enum:
- client
- media
- in: query
name: sort
description: >
Sort order:
* `relevance` - Relevance score descending
* `name` - DOI name alphabetical ascending
* `-name` - DOI name alphabetical descending
* `created` - Created date ascending
* `-created` - Created date descending
* `updated` - Updated date ascending
* `-updated` - Updated date descending
* `published` - Published date ascending
* `-published` - Published date descending
* `view-count` - viewCount ascending
* `-view-count` - viewCount descending
* `download-count` - downloadCount ascending
* `-download-count` - downloadCount descending
* `citation-count` - citationCount ascending
* `-citation-count` - citationCount descending
* `title` - first title alphabetical ascending
* `-title` - first title alphabetical descending
schema:
type: string
enum:
- relevance
- name
- '-name'
- created
- '-created'
- updated
- '-updated'
- 'published'
- '-published'
- 'view-count'
- '-view-count'
- 'download-count'
- '-download-count'
- 'citation-count'
- '-citation-count'
- 'title'
- '-title'
- in: query
name: disable-facets
description: Exclude facets from the response.
schema:
type: boolean
- in: query
name: detail
description: >
When set to `true`, will include the following attributes in the response:
* `prefix`
* `suffix`
* `viewsOverTime`
* `citationsOverTime`
* `provider`
* `references`
* `citations`
* `parts`
* `partOf`
* `versions`
* `versionOf`
* `xml`
* `alternateIdentifiers`
schema:
type: boolean
- in: query
name: fields[dois]
description: Only return the attributes specified. For example, `fields[dois]=titles,subjects` will only return titles and subjects.
schema:
type: string
- in: query
name: source
description: The [system used to create the DOI](https://support.datacite.org/docs/api-get-doi#source).
schema:
$ref: '#/components/schemas/source'
responses:
'200':
description: A JSON array of DOIs.
content:
application/vnd.api+json:
schema:
description: >-
Represents a list of DOIs and provides access to metadata attributes, further
schema specific information can be found at https://schema.datacite.org
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/DoiListItem'
meta:
allOf:
- $ref: '#/components/schemas/MetaCore'
- type: object
properties:
states:
allOf:
- description: Counts by DOI state.
- $ref: '#/components/schemas/MetaArray'
resourceTypes:
allOf:
- description: resourceTypes in the search results with counts.
- $ref: '#/components/schemas/MetaArray'
created:
allOf:
- description: Histogram of the create date of the DOI record by top 10 years with counts.
- $ref: '#/components/schemas/MetaArray'
published:
allOf:
- description: Histogram of publicationYear years with counts.
- $ref: '#/components/schemas/MetaArray'
registered:
allOf:
- description: Histogram of the registered date of the DOI record by top 10 years with counts.
- $ref: '#/components/schemas/MetaArray'
providers:
allOf:
- description: The top 10 DataCite Members or Consortium Organizations with account IDs, titles, and counts.
- $ref: '#/components/schemas/MetaArray'
clients:
allOf:
- description: The top 10 repositories in the search results with account IDs, titles, and counts.
- $ref: '#/components/schemas/MetaArray'
affiliations:
allOf:
- description: The top 10 represented ROR affliations with ROR ID, research organization title, and counts.
- $ref: '#/components/schemas/MetaArray'
prefixes:
allOf:
- description: The top 10 prefixes in the search with counts.
- $ref: '#/components/schemas/MetaArray'
certificates:
allOf:
- description: Repository certificates in the search with counts.
- $ref: '#/components/schemas/MetaArray'
licenses:
allOf:
- description: The top 10 rights with rights identifiers in the search with counts.
- $ref: '#/components/schemas/MetaArray'
schemaVersions:
allOf:
- description: The DataCite Metadata Schema versions represented in the search with counts.
- $ref: '#/components/schemas/MetaArray'
linkChecksStatus:
allOf:
- description: The status of the landing pages of DOIs in the search (when and if last checked) with counts.
- $ref: '#/components/schemas/MetaArray'
subjects:
allOf:
- description: The top 10 subjects represented in the search with counts.
- $ref: '#/components/schemas/MetaArray'
fieldsOfScience:
allOf:
- description: The top 10 Fields of Science and Technology (FOS) subjects in the search with counts.
- $ref: '#/components/schemas/MetaArray'
citations:
allOf:
- description: A histogram of citations by publicationYear in the search by top 10 years with counts.
- $ref: '#/components/schemas/MetaArray'
views:
allOf:
- description: A histogram of views by publicationYear in the search by top 10 years with counts.
- $ref: '#/components/schemas/MetaArray'
downloads:
allOf:
- description: A histogram of downloads by publicationYear in the search by top 10 years with counts.
- $ref: '#/components/schemas/MetaArray'
links:
allOf:
- $ref: '#/components/schemas/Links'
example:
data:
type: dois
attributes:
doi: 10.5438/0014
prefix: "10.5438"
suffix: "0014"
identifiers:
- identifier: 'https://doi.org/10.5438/0014'
identifierType: DOI
creators:
- name: DataCite Metadata Working Group
titles:
- title: >-
DataCite Metadata Schema Documentation for the Publication and
Citation of Research Data v4.1
publisher: DataCite
publicationYear: 2017
types:
resourceTypeGeneral: Text
url: https://schema.datacite.org/meta/kernel-4.1/
post:
tags:
- dois
summary: Add a new DOI.
security:
- BasicAuth: []
- bearerAuth: []
parameters:
- in: query
$ref: '#/components/parameters/affiliationParam'
- in: query
$ref: '#/components/parameters/publisherParam'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DoiDetailItem'
responses:
'201':
description: Created
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/DoiDetailItem'
'/dois/{id}':
get:
parameters:
- name: id
in: path
description: DOI
required: true
schema:
type: string
- in: query
$ref: '#/components/parameters/affiliationParam'
- in: query
$ref: '#/components/parameters/publisherParam'
tags:
- dois
summary: Return a DOI.
responses:
'200':
description: A JSON object.
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/DoiDetailItem'
put:
parameters:
- name: id
in: path
description: The DOI to update.
required: true
schema:
type: string
- in: query
$ref: '#/components/parameters/affiliationParam'
- in: query
$ref: '#/components/parameters/publisherParam'
tags:
- dois
summary: Update a DOI.
description: PUT requests to the /dois endpoint will update a DOI record if it already exists and create a new record if the DOI name is not already taken.
security:
- BasicAuth: []
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DoiDetailItem'
responses:
'200':
description: OK
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/DoiDetailItem'
delete:
parameters:
- name: id
in: path
description: DOI
required: true
schema:
type: string
tags:
- dois
summary: Delete a DOI (for DOIs in draft state only).
security:
- BasicAuth: []
- bearerAuth: []
responses:
'204':
description: No content
'/dois/{id}/activities':
get:
parameters:
- name: id
in: path
description: DOI
required: true
schema:
type: string
tags:
- dois
- activities
summary: Return activities for a specific DOI.
responses:
'200':
description: A JSON object.
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Activity'
meta:
allOf:
- $ref: '#/components/schemas/MetaCore'
links:
allOf:
- $ref: '#/components/schemas/Links'
/events:
get:
summary: Return a list of events.
security: []
parameters:
- in: query
name: query
description: Query for any event information.
schema:
type: string
- in: query
name: subj-id
description: The identifier for the event subject expressed as URL.
schema:
type: string
example: https://doi.org/10.14454/g8e5-6293
- in: query
name: obj-id
description: The identifier for the event object expressed as URL.
schema:
type: string
example: https://doi.org/10.14454/g8e5-6293
- in: query
name: doi
description: The subj-id or obj-id of the event expressed as DOI.
schema:
type: string
example: 10.14454/g8e5-629
- in: query
name: prefix
description: The DOI prefix of the subj-id or obj-id of the event.
schema:
type: string
example: 10.14454
- in: query
name: orcid
description: The subj-id or obj-id of the event expressed as an ORCID iD.
schema:
type: string
example: 0000-0002-4684-9769
- in: query
name: year-month
description: The year and month in which the event occurred in the format YYYY-MM.
schema:
type: string
example: 2018-08
- in: query
name: source-id
description: The [source of the event](https://support.datacite.org/docs/eventdata-guide#source-id). Use commas to include multiple sources.
schema:
type: array
items:
$ref: '#/components/schemas/source-id'
explode: false
style: form
- in: query
name: relation-type-id
description: The relation type of the event. See [Linking events](https://support.datacite.org/docs/eventdata-guide#linking-events) and [Usage events](https://support.datacite.org/docs/eventdata-guide#usage-events) documentation for definitions. Use commas to include multiple relation types.
schema:
type: array
items:
$ref: '#/components/schemas/relation-type-id'
explode: false
style: form
- in: query
name: subtype
schema:
type: string
- in: query
name: citation-type
schema:
type: string
- in: query
name: registrant-id
schema:
type: string