-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathposter_schema.json
More file actions
1132 lines (1132 loc) · 44.9 KB
/
Copy pathposter_schema.json
File metadata and controls
1132 lines (1132 loc) · 44.9 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
{
"$id": "https://posters.science/schema/v0.1/poster_schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Machine Actionable Scientific Poster Schema",
"description": "JSON Schema for machine actionable scientific posters. It is based on the DataCite schema v4.6 but extended for poster-specific metadata that were not available in the DataCite schema. Mandatory (M) properties must be provided; Optional (O) properties provide richer description.",
"type": "object",
"additionalProperties": true,
"properties": {
"identifiers": {
"type": "array",
"description": "Identifiers for the poster. May include DOI, institutional IDs, or other persistent identifiers.",
"items": {
"type": "object",
"properties": {
"identifier": {
"type": "string",
"description": "The identifier value.",
"minLength": 1,
"examples": ["10.5072/posters.2025.001234", "arXiv:2501.12345", "Local-ID-789"]
},
"identifierType": {
"type": "string",
"description": "The type of identifier. Use 'DOI' for Digital Object Identifiers, or other standard identifier types.",
"minLength": 1,
"examples": ["DOI", "arXiv", "Local accession number", "Institutional ID", "file"]
}
},
"required": ["identifier", "identifierType"],
"additionalProperties": false
},
"minItems": 1,
"uniqueItems": true
},
"creators": {
"type": "array",
"description": "The authors of the poster, in priority order. The DataCite schema refers to authors as creators so we will use creator in the descriptions below.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The full name of the creator (personal name or organization name). Personal name format should be: family, given.",
"minLength": 1,
"examples": ["Garcia, Sofia", "Smith, John", "AI Research Laboratory"]
},
"givenName": {
"type": "string",
"description": "The given (first) name of the creator. Use only for personal names, not organizational names.",
"minLength": 1,
"examples": ["Sofia", "John", "Marie"]
},
"familyName": {
"type": "string",
"description": "The family (last) name of the creator. Use only for personal names, not organizational names.",
"minLength": 1,
"examples": ["Garcia", "Smith", "Curie"]
},
"nameType": {
"type": "string",
"description": "The type of name of the creator.",
"minLength": 1,
"enum": ["Personal", "Organizational"]
},
"nameIdentifiers": {
"type": "array",
"description": "The name identifiers of the creator.",
"items": {
"type": "object",
"properties": {
"nameIdentifier": {
"type": "string",
"description": "The name identifier of the creator.",
"minLength": 1,
"examples": [
"https://orcid.org/0000-0000-0000-0000",
"https://ror.org/000000000"
]
},
"nameIdentifierScheme": {
"type": "string",
"description": "The scheme of the name identifier of the creator.",
"minLength": 1,
"examples": ["ORCID", "ISNI", "ROR"]
},
"schemeURI": {
"type": "string",
"description": "The URI of the name identifier scheme of the creator.",
"minLength": 1,
"examples": [
"https://orcid.org",
"https://isni.org",
"https://ror.org"
]
}
},
"required": ["nameIdentifier"],
"additionalProperties": false
},
"uniqueItems": true
},
"affiliation": {
"type": "array",
"description": "The affiliation(s) of the creator. Can be simple strings or objects with identifier information.",
"items": {
"oneOf": [
{
"type": "string",
"description": "Simple affiliation name string.",
"minLength": 1,
"examples": [
"University of California, Los Angeles",
"German National Library of Science and Technology"
]
},
{
"type": "object",
"description": "Affiliation with optional identifier information.",
"properties": {
"name": {
"type": "string",
"description": "The name of the affiliated organization.",
"minLength": 1,
"examples": [
"University of California, Los Angeles",
"German National Library of Science and Technology",
"DataCite"
]
},
"affiliationIdentifier": {
"type": "string",
"description": "The identifier of the affiliation.",
"minLength": 1,
"examples": [
"https://ror.org/000000000",
"https://isni.org/0000000000000000"
]
},
"affiliationIdentifierScheme": {
"type": "string",
"description": "The scheme of the affiliation identifier. If affiliationIdentifier is used, affiliationIdentifierScheme is mandatory.",
"minLength": 1,
"examples": ["ROR", "ISNI"]
},
"schemeURI": {
"type": "string",
"description": "The URI of the affiliation identifier scheme.",
"minLength": 1,
"examples": ["https://ror.org", "https://isni.org"]
}
},
"required": ["name"],
"additionalProperties": false,
"if": {
"properties": {
"affiliationIdentifier": {
"type": "string",
"minLength": 1
}
},
"required": ["affiliationIdentifier"]
},
"then": {
"required": ["affiliationIdentifierScheme"]
}
}
]
},
"uniqueItems": true
}
},
"required": ["name"],
"additionalProperties": false
},
"minItems": 1,
"uniqueItems": true
},
"titles": {
"type": "array",
"description": "The titles of the poster. Include main title and any alternative titles, subtitles, or translations.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "The title of the poster.",
"minLength": 1,
"examples": ["Machine Learning Approaches to Diabetic Retinopathy Detection", "AI-Ready Clinical Datasets for Type 2 Diabetes Research"]
},
"titleType": {
"type": "string",
"description": "The type of title of the item. The titleType subproperty is used when more than a single title is provided. Unless otherwise indicated by titleType, a title is considered to be the main title.",
"minLength": 1,
"enum": ["AlternativeTitle", "Subtitle", "TranslatedTitle", "Other"]
}
},
"required": ["title"],
"additionalProperties": false
},
"minItems": 1,
"uniqueItems": true
},
"publisher": {
"type": [
"object",
"null"
],
"description": "The entity that hosts, 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. May be null as a placeholder when it is filled downstream by the hosting platform.",
"properties": {
"name": {
"type": "string",
"description": "The name of the publisher.",
"minLength": 1,
"examples": ["Zenodo", "IEEE Conference Publications", "ACM Digital Library", "Institutional Repository"]
},
"publisherIdentifier": {
"type": "string",
"description": "The identifier of the publisher of the item.",
"minLength": 1,
"examples": [
"https://ror.org/000000000",
"https://isni.org/0000000000000000",
"https://re3data.org/000000000"
]
},
"publisherIdentifierScheme": {
"type": "string",
"description": "The scheme of the publisher identifier of the item.",
"minLength": 1,
"examples": ["ROR", "re3data", "ISNI"]
},
"schemeURI": {
"type": "string",
"description": "The URI of the publisher identifier scheme of the item.",
"minLength": 1,
"examples": [
"https://ror.org",
"https://isni.org",
"https://re3data.org"
]
}
},
"required": ["name"],
"additionalProperties": false,
"if": {
"properties": {
"publisherIdentifier": {
"type": "string",
"minLength": 1
}
},
"required": ["publisherIdentifier"],
"additionalProperties": false
},
"then": {
"properties": {
"publisherIdentifierScheme": {
"type": "string",
"minLength": 1
}
},
"required": ["publisherIdentifierScheme"]
}
},
"publicationYear": {
"type": "integer",
"description": "The year when the poster was or will be made publicly available. Format: YYYY",
"minimum": 1000,
"maximum": 9999,
"examples": [2025]
},
"subjects": {
"type": "array",
"description": "Keywords, subject terms, or classification codes describing the research topic of the poster.",
"items": {
"type": "object",
"properties": {
"subject": {
"type": "string",
"description": "Subject, keyword, classification code, or key phrase describing the poster content.",
"minLength": 1,
"examples": ["Machine Learning", "Type 2 Diabetes", "Retinal Imaging", "Clinical Data Standards"]
},
"schemeUri": {
"type": "string",
"description": "The URI of the subject identifier scheme.",
"minLength": 1,
"examples": ["https://www.nlm.nih.gov/mesh/", "https://id.loc.gov/authorities/subjects.html"]
},
"valueUri": {
"type": "string",
"description": "The URI of the subject identifier.",
"minLength": 1,
"examples": ["https://www.nlm.nih.gov/mesh/D000001", "https://id.loc.gov/authorities/subjects/sh85118622.html"]
},
"subjectScheme": {
"type": "string",
"description": "The name of the subject scheme or classification code or authority if one is used.",
"minLength": 1,
"examples": ["NLM", "LCSH", "ANZSRC"]
},
"classificationCode": {
"type": "string",
"description": "The classification code of the subject of the item. The classificationCode sub-property may be used for subject schemes, like ANZSRC, which do not have valueURIs for each subject term.",
"minLength": 1,
"examples": ["310607"]
}
},
"required": ["subject"],
"additionalProperties": false
},
"minItems": 1,
"uniqueItems": true
},
"dates": {
"type": "array",
"description": "Important dates for the poster, such as when it was created, presented at a conference, or made publicly available.",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Date in W3CDTF format: YYYY, YYYY-MM-DD, or YYYY-MM-DDThh:mm:ssTZD. Can also specify date ranges.",
"examples": [
"2025",
"2025-10-15",
"2025-10-15T09:00:00Z",
"2025-10-15/2025-10-17"
],
"minLength": 1
},
"dateType": {
"type": "string",
"description": "The type of date of the item.",
"minLength": 1,
"oneOf": [
{
"const": "Accepted",
"description": "The date that the publisher accepted the resource into their system."
},
{
"const": "Available",
"description": "The date the resource is made publicly available. May be a range."
},
{
"const": "Copyrighted",
"description": "The specific, documented date at which the resource receives a copyrighted status, if applicable."
},
{
"const": "Collected",
"description": "The date or date range in which the resource content was collected."
},
{
"const": "Coverage",
"description": "The date or date range during which the resource is available."
},
{
"const": "Created",
"description": "The date the resource itself was put together; this could refer to a timeframe in ancient history, a date range, or a single date for a final component, e.g., the finalised file with all the data."
},
{
"const": "Issued",
"description": "The date that the resource is published or distributed, e.g., to a data centre"
},
{
"const": "Submitted",
"description": "The date the creator submits the resource to the publisher. This could be different from Accepted if the publisher then applies a selection process."
},
{
"const": "Updated",
"description": "The date of the last update to the resource, when the resource is being added to. May be a range."
},
{
"const": "Valid",
"description": "The date or date range during which the dataset or resource is accurate."
},
{
"const": "Withdrawn",
"description": "The date the resource is removed."
},
{
"const": "Presented",
"description": "POSTER-SPECIFIC EXTENSION: The date the resource was presented, such as at a conference. NOTE: For DataCite Metadata Schema compatibility, consider using 'Issued' instead with the dateInformation sub-property to provide context (e.g., 'Presented at [Conference Name]'). This ensures consistent dateTypes across different resource types."
},
{
"const": "Other",
"description": "Date type not defined elsewhere."
}
]
},
"dateInformation": {
"type": ["string", "null"],
"description": "Additional information about the date. Can be used to provide context, e.g., 'Presented at US-RSE 2025 Conference' when using dateType 'Issued' for poster presentation dates.",
"examples": ["Presented at US-RSE 2025 Conference", "2025-01-01", "55 BCE"]
}
},
"required": ["date", "dateType"],
"additionalProperties": false
},
"uniqueItems": true
},
"language": {
"type": "string",
"minLength": 2,
"description": "Primary language of the poster content. ISO 639-1 language code (e.g., 'en', 'es', 'de', 'fr', 'zh').",
"examples": ["en", "es", "zh", "fr", "de", "ja", "pt"]
},
"types": {
"type": "object",
"properties": {
"resourceType": {
"type": "string",
"description": "Free text. The recommended content is a single term of some detail so that a pair can be formed with the resourceTypeGeneral sub-property. For example, a resourceType of 'Census Data' paired with a resourceTypeGeneral of 'Dataset' yields 'Dataset/Census Data'.",
"minLength": 1
},
"resourceTypeGeneral": {
"description": "The general type of a resource.",
"$ref": "#/definitions/resourceType",
"default": "Other"
}
},
"required": ["resourceType"],
"additionalProperties": true
},
"relatedIdentifiers": {
"type": "array",
"description": "Identifiers of related resources. These must be globally unique identifiers.",
"items": {
"type": "object",
"properties": {
"relatedIdentifier": {
"type": "string",
"description": "The related identifier of the item.",
"minLength": 1,
"examples": ["10.21384/bar", "https://example.com/"]
},
"relatedIdentifierType": {
"description": "The type of related identifier of the item.",
"$ref": "#/definitions/identifierType"
},
"relationType": {
"description": "Description of the relationship of the dataset (A) and the related resource (B). ",
"$ref": "#/definitions/relationType"
},
"relatedMetadataScheme": {
"type": "string",
"description": "The scheme of the related metadata of the item. Use only if the relationType is HasMetadata or IsMetadataFor.",
"minLength": 1,
"examples": ["DDI-L"]
},
"schemeURI": {
"type": "string",
"description": "The URI of the related metadata scheme of the item. Use only if the relationType is HasMetadata or IsMetadataFor.",
"minLength": 1,
"examples": [
"http://www.ddialliance.org/Specification/DDI-Lifecycle/3.1/XMLSchema/instance.xsd"
]
},
"schemeType": {
"type": "string",
"description": "The type of the related metadata scheme of the item. Use only if the relationType is HasMetadata or IsMetadataFor.",
"minLength": 1,
"examples": ["XSD", "DDT"]
},
"resourceTypeGeneral": {
"description": "The general type of related resource.",
"$ref": "#/definitions/resourceType"
}
},
"required": [
"relatedIdentifier",
"relatedIdentifierType",
"relationType"
],
"additionalProperties": false
},
"uniqueItems": true
},
"sizes": {
"type": "array",
"description": "Physical dimensions or file size of the poster. Common poster sizes include: 36x48 inches, 48x36 inches, A0 (33.1x46.8 inches), A1, etc. Can also include file size.",
"items": {
"type": "string",
"minLength": 1,
"description": "A specific dimension or size",
"examples": ["36x48 inches portrait", "48x36 inches landscape", "A0 portrait", "90x120 cm", "24 MB PDF"]
},
"uniqueItems": true
},
"formats": {
"type": "array",
"description": "Technical format of the poster file. Use file extension or MIME type where possible, e.g., PDF, PNG, JPEG or application/pdf, image/png, image/jpeg.",
"items": {
"type": "string",
"minLength": 1
},
"minItems": 1,
"uniqueItems": true,
"examples": [
["PDF"],
["XML"],
["MPG"],
["application/pdf"],
["text/xml"],
["video/mpeg"]
]
},
"version": {
"type": "string",
"description": "The version number of the dataset. Suggested practice: major_version.minor_version. Register a new identifier for a major version change. May be used in conjunction with properties 'alternateIdentifier' and 'relatedIdentifier' to indicate various information updates. May be used in conjunction with property 'description' to indicate the nature and file/record range of version.",
"minLength": 1,
"examples": ["2.1"]
},
"rightsList": {
"type": "array",
"description": "Rights and license information for this resource. Required for FAIR compliance and enabling reuse based on metadata.",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"rights": {
"type": "string",
"minLength": 1,
"description": "Use the complete title of a license and include version information if applicable.",
"examples": ["Creative Commons Attribution 4.0 International", "CC-BY-4.0"]
},
"rightsUri": {
"type": "string",
"minLength": 1,
"description": "The URI of the license",
"examples": ["https://creativecommons.org/licenses/by/4.0/"]
},
"rightsIdentifier": {
"type": "string",
"minLength": 1,
"description": "A short, standardized version of the license name. A list of identifiers for commonly-used licenses may be found here: (https://spdx.org/licenses/)",
"examples": ["CC-BY-4.0"]
},
"rightsIdentifierScheme": {
"type": "string",
"minLength": 1,
"description": "The name of the scheme",
"examples": ["SPDX"]
},
"schemeUri": {
"type": "string",
"minLength": 1,
"description": "The URI of the rightsIdentifierScheme",
"examples": ["https://spdx.org/licenses/"]
}
},
"required": ["rights"]
},
"minItems": 1,
"uniqueItems": true
},
"descriptions": {
"type": "array",
"description": "Free text descriptions of the poster content. Typically includes an abstract summarizing the research, methods used, or technical details.",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"description": {
"type": "string",
"minLength": 1,
"description": "A description of the poster content.",
"examples": ["This poster presents machine learning methods for automated diabetic retinopathy screening using retinal fundus images from 4,000 participants...", "We describe a novel clinical dataset structure (CDS) for organizing multimodal research data in AI-ready formats..."]
},
"descriptionType": {
"type": "string",
"description": "The type of the 'description'. Must be from controlled list.",
"oneOf": [
{
"const": "Abstract",
"description": "A brief description of the resource and the context in which the resource was created"
},
{
"const": "Methods",
"description": "The methodology employed for the study or research."
},
{
"const": "SeriesInformation",
"description": "Information about the series to which the resource belongs."
},
{
"const": "TableOfContents",
"description": "A table of contents for the resource."
},
{
"const": "TechnicalInfo",
"description": "Detailed information that may be associated with design, implementation, operation, use, and/or maintenance of a process or system."
},
{
"const": "Other",
"description": "Other description information that does not fit into an existing category."
}
]
}
},
"required": ["descriptionType", "description"]
},
"minItems": 1,
"uniqueItems": true
},
"fundingReferences": {
"type": "array",
"description": "Information about financial support for the research presented in the poster.",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"funderName": {
"type": "string",
"minLength": 1,
"description": "Name of the funding provider.",
"examples": ["National Institutes of Health (NIH)", "National Science Foundation", "European Research Council"]
},
"funderIdentifier": {
"type": "string",
"minLength": 1,
"description": "Uniquely identifies a funding entity, according to various types.",
"examples": ["https://doi.org/10.13039/100000936"]
},
"funderIdentifierType": {
"type": "string",
"minLength": 1,
"description": "The type of funder identifier used.",
"enum": ["Crossref Funder ID", "GRID", "ISNI", "ROR", "Other"]
},
"schemeUri": {
"type": "string",
"minLength": 1,
"description": "The URI of the funder identifier scheme",
"examples": ["https://ror.org", "https://www.crossref.org/services/funder-registry/"]
},
"awardNumber": {
"type": "string",
"minLength": 1,
"description": "The code assigned by the funder to a sponsored award (grant).",
"examples": ["OT2OD032644", "GBMF3859.01"]
},
"awardUri": {
"type": "string",
"minLength": 1,
"description": "The URI leading to a page provided by the funder for more information about the award (grant).",
"examples": [
"https://reporter.nih.gov/search/VtCaq87pxkW1uosvSNPjHg/project-details/10858583",
"https://www.moore.org/grants/list/GBMF3859.01",
"https://doi.org/10.35802/221400"
]
},
"awardTitle": {
"type": "string",
"minLength": 1,
"description": "The human readable title or name of the award (grant)",
"examples": ["The awesome project of XYZ", "Socioenvironmental Monitoring of the Amazon Basin and Xingu"]
}
},
"required": ["funderName"],
"if": {
"properties": {
"funderIdentifier": {
"type": "string",
"minLength": 1
}
},
"required": ["funderIdentifier"],
"additionalProperties": false
},
"then": {
"properties": {
"funderIdentifierType": {
"type": "string",
"minLength": 1
}
},
"required": ["funderIdentifierType"]
}
},
"uniqueItems": true
},
"conference": {
"type": "object",
"$comment": "POSTER-SPECIFIC EXTENSION: DataCite feedback (Jan 2026) indicates conference information should be handled through RelatedIdentifier and/or RelatedItem fields for DataCite Metadata Schema compatibility. See example: https://github.com/datacite/schema/blob/schema-4.7-draft/source/meta/kernel-4.7/example/datacite-example-poster-v4.xml (prepared for DataCite Schema 4.7 release with resourceTypeGeneral 'Poster'). This property is retained for poster-specific use cases where richer conference metadata is needed.",
"description": "Conference information for the poster presentation. NOTE: For DataCite Metadata Schema compatibility, consider using RelatedIdentifier/RelatedItem fields instead. This property is a poster-specific extension for capturing detailed conference metadata.",
"properties": {
"conferenceName": {
"type": "string",
"minLength": 1,
"description": "Name of the conference"
},
"conferenceLocation": {
"type": "string",
"minLength": 1,
"description": "Location of the conference"
},
"conferenceUri": {
"type": "string",
"minLength": 1,
"description": "URI of the conference"
},
"conferenceIdentifier": {
"type": "string",
"minLength": 1,
"description": "Identifier of the conference"
},
"conferenceIdentifierType": {
"type": "string",
"minLength": 1,
"description": "Type of conference identifier"
},
"conferenceSchemaUri": {
"type": "string",
"minLength": 1,
"description": "Schema URI for the conference"
},
"conferenceStartDate": {
"type": "string",
"minLength": 1,
"description": "Start date of the conference",
"examples": ["2025-09-15"]
},
"conferenceEndDate": {
"type": "string",
"minLength": 1,
"description": "End date of the conference",
"examples": ["2025-09-17"]
},
"conferenceAcronym": {
"type": "string",
"minLength": 1,
"description": "Acronym of the conference"
},
"conferenceSeries": {
"type": "string",
"minLength": 1,
"description": "Conference series information"
},
"conferenceYear": {
"type": "integer",
"description": "The year of the conference. Format: YYYY",
"minimum": 1900,
"maximum": 2100,
"examples": [2025, 2026]
}
},
"required": ["conferenceName", "conferenceYear"],
"additionalProperties": false
},
"content": {
"type": "object",
"description": "Text content extracted from the resource. For posters, the title is stored under the separate DataCite schema titles field. Remaining content is organized into sections here with flexible naming (e.g., 'Introduction', 'Methods', 'Approach', 'Results & Conclusions', etc.). This field is intentionally generic to support other visual resource types (presentations, infographics, one-pagers).",
"properties": {
"sections": {
"type": "array",
"description": "Array of content sections extracted from the poster. Each section represents a distinct part of the poster with its title and content.",
"items": {
"type": "object",
"description": "A single section of the poster with its title and content",
"properties": {
"sectionTitle": {
"type": "string",
"minLength": 1,
"description": "The title or heading of this section as it appears on the poster. Examples: 'Introduction', 'Background', 'Methods', 'Approach', 'Results', 'Results & Conclusions', 'Discussion', 'Future Work', 'Acknowledgements', 'References', etc.",
"examples": ["Introduction", "Methods", "Results & Discussion", "Conclusions", "References"]
},
"sectionContent": {
"type": "string",
"minLength": 1,
"description": "The text content of this section extracted from the poster.",
"examples": ["Machine learning algorithms were applied to analyze retinal images from 4,000 participants..."]
}
},
"additionalProperties": false
},
"minItems": 1
},
"unstructuredContent": {
"type": "string",
"description": "Optional field for poster content that cannot be organized into clear sections. Use this when the poster layout is highly unstructured or when section boundaries cannot be reliably identified.",
"minLength": 1
}
},
"additionalProperties": false
},
"tableCaptions": {
"type": "array",
"description": "Array of table caption objects. Each object represents one table with its caption and optional identifier for cross-referencing.",
"items": {
"type": "object",
"description": "Caption information for a single table.",
"properties": {
"id": {
"type": "string",
"description": "Optional identifier for cross-referencing this table (e.g., 'table1', 'tbl-results'). Useful when table data and captions are extracted separately.",
"examples": ["table1", "tbl-results", "T1"]
},
"caption": {
"type": "string",
"minLength": 1,
"description": "The full caption text for this table.",
"examples": ["Table 1. Summary of Results", "Table 2. Comparison of model performance across datasets"]
}
},
"required": ["caption"],
"additionalProperties": false
},
"uniqueItems": true
},
"imageCaptions": {
"type": "array",
"description": "Array of image/figure caption objects. Each object represents one figure with its caption and optional identifier for cross-referencing.",
"items": {
"type": "object",
"description": "Caption information for a single image/figure.",
"properties": {
"id": {
"type": "string",
"description": "Optional identifier for cross-referencing this figure (e.g., 'fig1', 'figure-workflow'). Useful when images and captions are extracted separately.",
"examples": ["fig1", "figure-workflow", "F1"]
},
"caption": {
"type": "string",
"minLength": 1,
"description": "The full caption text for this image/figure.",
"examples": ["Figure 1. Overview of the Task Force", "Figure 2. Distribution of participants by region"]
}
},
"required": ["caption"],
"additionalProperties": false
},
"uniqueItems": true
},
"researchField": {
"type": "string",
"minLength": 1,
"description": "Primary research field or discipline area for the research presented. Renamed from 'domain' to avoid confusion with biological taxonomy (where domain is the highest rank above kingdom/species).",
"examples": ["Machine Learning", "Clinical Medicine", "Bioinformatics", "Public Health", "Neuroscience"]
}
},
"required": [
"creators",
"titles",
"publicationYear",
"subjects",
"descriptions",
"publisher",
"conference",
"formats"
],
"definitions": {
"resourceType": {
"type": "string",
"description": "The type of a resource.",
"enum": [
"Audiovisual",
"Award",
"Book",
"BookChapter",
"Collection",
"ComputationalNotebook",
"ConferencePaper",
"ConferenceProceeding",
"DataPaper",
"Dataset",
"Dissertation",
"Event",
"Image",
"InteractiveResource",
"Journal",
"JournalArticle",
"Model",
"OutputManagementPlan",
"PeerReview",
"PhysicalObject",
"Preprint",
"Project",
"Report",
"Software",
"Sound",
"Standard",
"StudyRegistration",
"Text",
"Workflow",
"Other"
]
},
"relationType": {
"type": "string",
"description": "The type of relation between the related identifier and the item.",
"oneOf": [
{
"const": "IsCitedBy",
"description": "Indicates that B includes A in a citation"
},
{
"const": "Cites",
"description": "Indicates that A includes B in a citation"
},
{
"const": "IsSupplementTo",
"description": "Indicates that A is a supplement to B"
},
{
"const": "IsSupplementedBy",
"description": "Indicates that B is a supplement to A"
},
{
"const": "IsContinuedBy",
"description": "Indicates A is continued by the work B"
},
{
"const": "Continues",
"description": "Indicates A is a continuation of the work B"
},
{
"const": "IsDescribedBy",
"description": "Indicates A is described by B"
},
{
"const": "Describes",
"description": "Indicates A describes B"
},
{
"const": "HasMetadata",
"description": "Indicates resource A has additional metadata B"
},
{
"const": "IsMetadataFor",
"description": "Indicates additional metadata A for a resource B"
},
{
"const": "HasVersion",
"description": "Indicates A has a version (B)"
},
{
"const": "IsVersionOf",
"description": "Indicates A is a version of B"
},
{
"const": "IsNewVersionOf",
"description": "Indicates A is a new edition of B, where the new edition has been modified or updated"
},
{
"const": "IsPreviousVersionOf",
"description": "Indicates A is a previous edition of B"
},
{
"const": "IsPartOf",
"description": "Indicates A is a portion of B; may be used for elements of a series"
},
{
"const": "HasPart",
"description": "Indicates A includes the part B"
},
{
"const": "IsPublishedIn",
"description": "Indicates A is published inside B, but is independent of other things published inside of B"
},
{
"const": "IsReferencedBy",
"description": "Indicates A is used as a source of information by B"
},
{
"const": "References",
"description": "Indicates B is used as a source of information for A"
},
{
"const": "IsDocumentedBy",
"description": "Indicates B is documentation about/ explaining A; e.g. points to software documentation"
},
{
"const": "Documents",
"description": "Indicates A is documentation about B; e.g. points to software documentation"
},
{
"const": "IsCompiledBy",
"description": "Indicates B is used to compile or create A"
},
{
"const": "Compiles",
"description": "Indicates B is the result of a compile or creation event using A"
},
{
"const": "IsVariantFormOf",
"description": "Indicates A is a variant or different form of B"
},
{
"const": "IsOriginalFormOf",
"description": "Indicates A is the original form of B"
},
{
"const": "IsIdenticalTo",
"description": "Indicates that A is identical to B, for use when there is a need to register two separate instances of the same resource"
},
{
"const": "IsReviewedBy",
"description": "Indicates that A is reviewed by B"
},
{