-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathcollections.json
More file actions
1830 lines (1830 loc) · 46.7 KB
/
collections.json
File metadata and controls
1830 lines (1830 loc) · 46.7 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
{
"collections": [
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "These resources were listed in [Sharing biological data: why, when, and how](https://doi.org/10.1002/1873-3468.14067), which prompted further novel curation of the Bioregistry which included the addition of GenBank, Panorama Public, EMPIAR, and SSBD. It also prompted the curation of mappings to FAIRSharing when possible.",
"identifier": "0000001",
"name": "Resources mentioned in \"Sharing biological data: why, when, and how\"",
"resources": [
"biostudies",
"bmrb.entry",
"cellimage",
"ega.dataset",
"ega.study",
"emdb",
"empiar",
"genbank",
"geo",
"idr",
"insdc.sra",
"massive",
"panorama",
"pdb",
"peptideatlas.dataset",
"pride",
"ssbd.dataset",
"ssbd.project"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"context": "semweb",
"description": "Resources used in the semantic web, drawing from lists in [BioContext](https://github.com/prefixcommons/biocontext/blob/master/registry/semweb_context.yaml) and [LinkML](https://github.com/linkml/prefixmaps/blob/main/src/prefixmaps/data/linked_data.curated.yaml) as well as W3C recommendations.",
"identifier": "0000002",
"name": "Semantic Web Context",
"resources": [
"ac",
"bibo",
"dc",
"dcat",
"dcterms",
"dctypes",
"doap",
"faldo",
"foaf",
"idot",
"oa",
"oboinowl",
"oslc",
"owl",
"pav",
"prov",
"qb",
"qudt",
"rdf",
"rdfs",
"schema",
"sh",
"shex",
"skos",
"skosxl",
"swrl",
"vann",
"void",
"xsd"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "The data sources used in xrefs in the ChEBI ontology. More information in the \"Data Sources\" section of [this document](https://docs.google.com/document/d/13_FqP_8qkDdw5RFv5qMYo7xRyfY4xUiuVtLn845A6Io/edit#heading=h.dkfn7xf53tpx).",
"identifier": "0000003",
"name": "ChEBI Data Sources",
"resources": [
"chebi",
"chemidplus",
"come",
"drugbank",
"ecmdb",
"eurofir",
"google.patent",
"hmdb",
"kegg.compound",
"kegg.drug",
"kegg.glycan",
"knapsack",
"lincs.smallmolecule",
"lipidmaps",
"metacyc.compound",
"molbase.sheffield",
"pdb",
"pdb-ccd",
"pesticides",
"resid",
"smid",
"umbbd.compound",
"webelements",
"ymdb"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "This collection contains the many prefixes for the different repackaging of the International Classification of Diseases (ICD) throughout its major revisions.",
"identifier": "0000004",
"name": "International Classifications of Diseases",
"resources": [
"icd10",
"icd10cm",
"icd10pcs",
"icd11",
"icd11.code",
"icd9",
"icd9cm",
"icdo"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "This collection contains various brain atlases from the Allen Institute.",
"identifier": "0000005",
"name": "Allen Institute Ontologies",
"resources": [
"dhba",
"dmba",
"hba",
"mba",
"pba"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"context": "spar",
"description": "The [Semantic Publishing and Referencing (SPAR) Ontologies](http://www.sparontologies.net/ontologies) are a suite of orthogonal and complementary OWL 2 ontologies that enable all aspects of the publishing process to be described in machine-readable metadata statements, encoded using RDF.",
"identifier": "0000006",
"name": "SPAR Ontologies",
"resources": [
"bido",
"biro",
"c4o",
"cito",
"datacite",
"deo",
"doco",
"fabio",
"frapo",
"mito",
"pso",
"puro",
"pwo",
"scoro"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "Prefixes useful in annotating documentation provenance.",
"identifier": "0000007",
"name": "Publication Provenance Prefixes",
"resources": [
"arxiv",
"doi",
"pmc",
"pubmed"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "Prefixes exported for the epidemiology domain knowledge graph in the ASKEM project.",
"identifier": "0000008",
"name": "ASKEM Epidemiology Prefixes",
"resources": [
"bfo",
"caro",
"doi",
"doid",
"dso",
"hp",
"ido",
"oae",
"oboinowl",
"ovae",
"owl",
"pmc",
"pubmed",
"rdfs",
"ro",
"symp",
"trans",
"vo"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "Prefixes mentioned on the _external_ list on the FHIR [Code Systems](https://hl7.org/fhir/terminologies-systems.html) page. This list is mostly complete. Notably, some entries that have not been curated:\n\n- HGVS (see discussion at [#460](https://github.com/biopragmatics/bioregistry/issues/460))\n- [NUBC](http://www.nubc.org) (National Uniform Billing Committee) - could not find information about the terminology or its entries\n- [ICPC](http://www.ph3c.org/) (International Classification of Primary Care) _same_\n- [GTIN](https://www.gs1.org/standards/id-keys/gtin) (Global Trade Item Number) _same_\n- [MDC](https://www.iso.org/standard/37890.html) (Medical Device Codes) since that appears to be part of a larger ISO standard vocabulary that needs further investigation",
"identifier": "0000009",
"name": "FHIR External Terminologies",
"resources": [
"atcc",
"clinicaltrials",
"clinvar.variation",
"cosmic.gene",
"cpt",
"cvx",
"dbsnp",
"dicom",
"dsm5",
"ensembl",
"hc.din",
"hc.npn",
"hgnc",
"hl7.v2codesystem",
"hl7.v3codesystem",
"icd10",
"icd9",
"icf",
"ietf.language",
"imgt.hla",
"iso.3166",
"loinc",
"lrg",
"ncit",
"ndc",
"ndfrt",
"nucc.taxonomy",
"omim",
"pharmgkb.gene",
"pubmed",
"radlex",
"refseq",
"rxnorm",
"snomedct",
"so",
"ucum",
"unii"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "The [Global Biodata Coalition](https://globalbiodata.org) released a [curated list](https://globalbiodata.org/scientific-activities/global-core-biodata-resources/) of 37 life sciences databases in December 2022 that they consider as having significant importance (see criteria [here](https://doi.org/10.5281/zenodo.5845116)). While it's not a primary goal of the Bioregistry to cover life science databases (other resources like Wikidata and [FAIRsharing](https://fairsharing.org) already do an excellent job of this), many notable databases induce one or more semantic spaces that are relevant for curation and prefix assignment in the Bioregistry. Therefore, a large number of the resources in this list correspond 1-to-1 with prefixes in the Bioregistry, a small number (e.g., Orphanet, CIViC, PharmGKB) correspond to multiple prefixes, some have a complicated relationship with many-to-1 relationships to prefixes (DNA Data Bank of Japan, European Nucleotide Archive), and some constitute databases that simply reuse other key vocabularies (e.g., STRING reuses UniProt, GWAS Catalog reuses dbSNP and EFO). Among the databases that don't induce semantic spaces or have simple relationships to prefixes are:\n\n- [Clinical Genome Resource](https://www.clinicalgenome.org/) (uses HGNC, MONDO, PharmGKB, etc.)\n- [DNA Data Bank of Japan](https://www.ddbj.nig.ac.jp/) (uses INSDC)\n- [GENCODE](https://www.gencodegenes.org/) (uses GenBank)\n- [GWAS Catalog](https://www.ebi.ac.uk/gwas/) (uses dbSNP, EFO, etc)\n- [STRING](https://string-db.org/) (uses UniProt)",
"identifier": "0000010",
"name": "Global Biodata Coalition - Global Core Biodata Resources",
"resources": [
"agrkb",
"bacdive",
"brenda",
"brenda.ligand",
"brenda.ligandgroup",
"bto",
"chebi",
"chembl",
"civic.aid",
"civic.did",
"civic.eid",
"civic.gid",
"civic.sid",
"civic.tid",
"civic.vid",
"ecocyc",
"ena.embl",
"ensembl",
"eupath",
"flybase",
"gbif",
"gnomad",
"go",
"hgnc",
"interpro",
"mgi",
"orpha",
"orphanet.ordo",
"panther.family",
"panther.node",
"panther.pathway",
"panther.pthcmp",
"pdb",
"pharmgkb.disease",
"pharmgkb.drug",
"pharmgkb.gene",
"pharmgkb.pathways",
"pmc",
"pombase",
"px",
"reactome",
"rgd",
"rhea",
"sgd",
"ucsc",
"uniprot",
"wormbase",
"zfin"
]
},
{
"authors": [
{
"email": "hendrik.borgelt@tu-dortmund.de",
"github": "HendrikBorgelt",
"name": " Hendrik Borgelt",
"orcid": "0000-0001-5886-7860"
},
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "A collection of ontologies relevant for chemistry.\n\nThe NFDI program deploys a [custom instance](https://terminology.tib.eu/ts/ontologies?collection=NFDI4CAT&and=false&page=1) of the Ontology Lookup Service (OLS) that provides the ontologies in this list.\n\nA further analysis of the metadata landscape of the ontologies in this list can be found [here](https://github.com/nfdi4cat/Ontology-Overview-of-NFDI4Cat).\n\nOntoCompChem and OntoKin appear on the NFDI4Cat list but have not yet been registered in the Bioregistry because the resources are missing/incomplete such that they do not meet minimum Bioregistry metadata standards. These might be added in the future if additional metadata can be found.",
"identifier": "0000011",
"name": "NDFI4Cat Collection",
"organizations": [
{
"name": "NFDI4Cat",
"ror": "01k9z4a50",
"wikidata": "Q98380342"
},
{
"name": "NFDI",
"ror": "05qj6w324",
"wikidata": "Q61658497"
}
],
"references": [
"https://nfdi4cat.org/services/ontologie-sammlung/",
"https://terminology.tib.eu/ts/ontologies?collection=NFDI4CAT&and=false&page=1",
"https://github.com/nfdi4cat/Ontology-Overview-of-NFDI4Cat"
],
"resources": [
"afo",
"bao",
"bfo",
"cao",
"chebi",
"cheminf",
"chmo",
"dolce",
"edam",
"emmo",
"emmo.cif",
"envo",
"iso15926",
"m4i",
"mop",
"ms",
"nfdi4chem.ontocape",
"nfdi4chem.osmo",
"obi",
"om",
"rex",
"rxno",
"sbo",
"voc4cat",
"worldavatar.compchem",
"worldavatar.kin"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "A collection of clinical trial registries appearing in the World Health Organization's [International Clinical Trials Registry Platform (ICTRP)](https://trialsearch.who.int/)",
"identifier": "0000012",
"name": "Clinical Trial Registries",
"resources": [
"anzctr",
"chictr",
"clinicaltrials",
"ctis",
"ctri",
"drks",
"euclinicaltrials",
"hc.trial",
"irct",
"isrctn",
"itmctr",
"jrct",
"kcris",
"lbctr",
"pactr",
"phrr",
"rebec",
"repec",
"rpcec",
"slctr",
"snctp",
"tctr",
"uminctr"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "These resources represent software repositories",
"identifier": "0000013",
"name": "Software Package Repositories",
"resources": [
"cran",
"crates",
"npm",
"packagist",
"pypi",
"rubygems"
]
},
{
"authors": [
{
"email": "philip.stroemert@tib.eu",
"github": "StroemPhi",
"name": " Philip Strömert",
"orcid": "0000-0002-1595-3213"
}
],
"description": "A collection of ontologies relevant within the [NFDI4Chem project](https://www.nfdi4chem.de/) that is mostly based on the overview paper [Ontologies4Chem: the landscape of ontologies in chemistry](https://doi.org/10.1515/pac-2021-2007).\n\nNFDI4Chem deploys a [custom instance](https://terminology.nfdi4chem.de/ts/) of the Ontology Lookup Service (OLS), called NFDI4Chem Terminology Services (TS), that provides the ontologies in this list. This list contains ontologies that cover various domains of chemistry (e.g. ChEBI, CHMO, and RXNO), those that are dependencies of these chemistry specific ontologies (e.g. BFO, RO, IAO, and OBI) as well as those ontologies, which where indexed in the NFDI4Chem TS for interoperability research purposes (e.g. PROV-O, SOSA, and OBOE).",
"identifier": "0000014",
"name": "NFDI4Chem Collection",
"organizations": [
{
"name": "NFDI4Chem",
"ror": "05wwzbv21",
"wikidata": "Q96678459"
},
{
"name": "NFDI",
"ror": "05qj6w324",
"wikidata": "Q61658497"
}
],
"references": [
"https://terminology.nfdi4chem.de/ts/",
"https://doi.org/10.1515/pac-2021-2007"
],
"resources": [
"afo",
"bfo",
"bto",
"chebi",
"cheminf",
"chemrof",
"chiro",
"chmo",
"duo",
"edam",
"efo",
"enm",
"envo",
"fair",
"fix",
"gainesville.core",
"iao",
"mod",
"mop",
"ms",
"ncit",
"nmr",
"obi",
"oboe",
"om",
"ontorxn",
"pato",
"proco",
"prov",
"reproduceme",
"rex",
"ro",
"rxno",
"sepio",
"sio",
"sosa",
"ssn",
"ssn.system",
"suprabank.additive",
"suprabank.buffer",
"suprabank.interaction",
"suprabank.molecule",
"suprabank.solvent",
"swo",
"time",
"uo",
"vibso",
"voc4cat",
"worldavatar.compchem",
"worldavatar.kin",
"worldavatar.os"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "A collection of resources added during Biocuration 2025 in Kansas City, MO, USA.",
"identifier": "0000015",
"name": "Biocuration Conference 2025 Collection",
"resources": [
"antifam",
"biomarkerkb.biomarker",
"biomarkerkb.canonical",
"blastrule",
"emi",
"endlessforms.collection",
"endlessforms.element",
"endlessforms.graphic",
"endlessforms.image",
"endlessforms.library",
"endlessforms.unit",
"gdo"
]
},
{
"authors": [
{
"email": "robert.j.allaway@gmail.com",
"github": "allaway",
"name": "Robert Allaway",
"orcid": "0000-0003-3573-3565"
}
],
"description": "A curated list by Sage Bionetworks of external resources that are automatically linked on Synapse.org and affiliated data portals",
"identifier": "0000016",
"name": "Synapse.org external links",
"resources": [
"ado",
"agrkb",
"anzctr",
"arrayexpress",
"arxiv",
"atc",
"atcc",
"bacdive",
"bfo",
"bgee.gene",
"biocyc",
"biogrid",
"bioportal",
"bioproject",
"biorxiv",
"biosample",
"biostudies",
"bmrb.entry",
"brenda",
"brenda.ligand",
"brenda.ligandgroup",
"bto",
"cath",
"cbioportal",
"cdd",
"cellimage",
"cellxgene.collection",
"chebi",
"chembl",
"chembl.compound",
"chemspider",
"civic.aid",
"civic.did",
"civic.eid",
"civic.gid",
"civic.sid",
"civic.tid",
"civic.vid",
"clinicaltrials",
"clinvar.record",
"clinvar.variation",
"complexportal",
"cosmic.cell",
"cosmic.gene",
"cpt",
"ctd.chemical",
"ctri",
"cvx",
"dbgap",
"dbsnp",
"decipher",
"depmap",
"dhba",
"disprot",
"dmba",
"doi",
"doid",
"drks",
"drugbank",
"drugcentral",
"duo",
"ec",
"ecacc",
"edam",
"ega.dataset",
"ega.study",
"emdb",
"empiar",
"ena.embl",
"ensembl",
"ensembl.metazoa",
"ensembl.plant",
"euclinicaltrials",
"eupath",
"exac.variant",
"fairsharing",
"flybase",
"fma",
"funderregistry",
"gard",
"gbif",
"gdc",
"genecards.gene",
"geo",
"go",
"gramene.gene",
"gramene.growthstage",
"gramene.protein",
"gtdb",
"hba",
"hc.trial",
"hgnc",
"hl7.v2codesystem",
"hmdb",
"icd10",
"icd9",
"icdc",
"icf",
"idr",
"imgt.hla",
"inchi",
"inchikey",
"insdc",
"insdc.sra",
"intact",
"interpro",
"iso.3166",
"isrctn",
"itis",
"jaxmice",
"kegg",
"kegg.compound",
"kegg.disease",
"kegg.drug",
"kegg.glycan",
"kegg.pathway",
"kegg.reaction",
"loinc",
"massive",
"mba",
"mesh",
"metabolights",
"metacyc.compound",
"mgi",
"mir",
"mirbase",
"mondo",
"ncbigene",
"ncbiprotein",
"ncbitaxon",
"ncit",
"ndc",
"ndfrt",
"nextprot",
"nihreporter.project",
"nord",
"omim",
"omop",
"orcid",
"orpha",
"orphanet.ordo",
"osf",
"panther.family",
"panther.pathway",
"panther.pthcmp",
"pba",
"pdb",
"pdb-ccd",
"pdb.ligand",
"pdc.study",
"peco",
"peptideatlas.dataset",
"pfam",
"pfam.clan",
"pharmgkb.disease",
"pharmgkb.drug",
"pharmgkb.gene",
"pharmgkb.pathways",
"pmc",
"pombase",
"pride.project",
"pubchem.compound",
"pubmed",
"px",
"radlex",
"reactome",
"rebec",
"refseq",
"rfam",
"rfc",
"rgd",
"rhea",
"rnacentral",
"ror",
"rrid",
"rrrc",
"rxnorm",
"scop",
"sgd",
"signor",
"snomedct",
"so",
"ssbd.dataset",
"ssbd.project",
"stitch",
"string",
"tao",
"tcdb",
"uberon",
"unii",
"uniparc",
"uniprot",
"uniprot.isoform",
"uniprot.proteome",
"uniref",
"wikidata",
"wikigenes",
"wikipathways",
"wormbase",
"xenbase",
"zenodo.record",
"zfin",
"zinc"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "Prefixes relevant for the [Data Literacy Alliance (DALIA)](https://dalia.education/en) project",
"identifier": "0000017",
"name": "DALIA Resources",
"resources": [
"ans.educationlevel",
"bibframe",
"bibo",
"bmbf.glossary",
"ceds.element",
"citedcat",
"codata.rdmt",
"dai.thesauri",
"datacite",
"dbpedia.resource",
"dcterms",
"emmo",
"fabio",
"iana.mediatype",
"isced1997",
"isced2011",
"loc.fdd",
"m4i",
"marc21",
"modalia",
"nfdi4dso",
"owl",
"prov",
"sage.socialsciencethesaurus",
"schema",
"sio",
"spdx",
"spdx.term",
"t4fs",
"unesco.thesaurus",
"wdrs",
"wikidata"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
},
{
"email": "m.voigt@hzdr.de",
"github": "eilmiv",
"name": "Martin Voigt",
"orcid": "0000-0001-5556-838X"
}
],
"description": "The prefixes appearing in this collection correspond resources whose entities could appear as values for target groups, media types, educational levels, and other fields in OER data models. It can also include parts that are used to construct schemas for OERs\n\nIt was originally curated as part of the publication [_Teaching RDM in a smart advanced inorganic lab course and its provision in the DALIA platform_ (arxiv:2509.18902)](https://arxiv.org/pdf/2509.18902).",
"identifier": "0000018",
"name": "Resources for modeling Open Educational Resources",
"references": [
"https://arxiv.org/pdf/2509.18902"
],
"resources": [
"adcad",
"ans.educationlevel",
"ccso",
"ceds.learning_resource_type",
"edam",
"gsso",
"iana.mediatype",
"isced1997",
"isced2011",
"isced2013",
"kim.amb",
"kim.conditionsofaccess",
"kim.educationlevel",
"kim.esv",
"kim.hcrt",
"kim.hochschulfaechersystematik",
"kim.lp",
"kim.schularten",
"kim.schulfaecher",
"loc.fdd",
"lrmi",
"lrmi.alignmenttype",
"lrmi.educationalaudiencerole",
"lrmi.eduse",
"lrmi.interact",
"lrmi.resourcetype",
"modalia",
"oeh.educationlevel",
"oerschema",
"openeduhub.context",
"schema",
"t4fs",
"unesco.thesaurus",
"vivo"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "Prefixes relevant for the digital humanities",
"identifier": "0000019",
"name": "Digital Humanities",
"references": [
"https://det.social/@HxxxKxxx/115492424655875213"
],
"resources": [
"cidoc.crm",
"edm",
"getty.att",
"getty.cona",
"getty.gvp",
"getty.ia",
"getty.tgn",
"getty.ulan",
"iconclass"
]
},
{
"authors": [
{
"email": "cthoyt@gmail.com",
"github": "cthoyt",
"name": "Charles Tapley Hoyt",
"orcid": "0000-0003-4423-4370"
}
],
"description": "[KonsortSWD (Strengthen, Widen, Deepen)](https://www.nfdi.de/consortia-konsortswd) is the German National Data Infrastructure (NFDI) consortium for social, educational, behavioral, and economic sciences. This collection reflects the prefixes collected by NFDI Section Metadata for ontologies and controlled vocabularies used by members of the consortium.",
"identifier": "0000020",
"name": "KonsortSWD",
"organizations": [
{
"name": "KonsortSWD",
"ror": "020tty630",
"wikidata": "Q98380340"
},
{
"name": "NFDI",
"ror": "05qj6w324",
"wikidata": "Q61658497"
}
],
"resources": [
"cessda",
"cessda.cdcpublishernames",
"cessda.cessdadatacataloguecollections",
"cessda.cessdapersistentidentifiertypes",
"cessda.countrynamesandcodes",
"cessda.topicclassification",
"ddi.aggregationmethod",
"ddi.analysisunit",
"ddi.characterset",
"ddi.commonalitytype",
"ddi.contributorrole",
"ddi.datasourcetype",
"ddi.datatype",
"ddi.datetype",
"ddi.generaldataformat",
"ddi.languageproficiency",
"ddi.lifecycleeventtype",
"ddi.modeofcollection",
"ddi.numerictype",
"ddi.responseunit",
"ddi.samplingprocedure",
"ddi.softwarepackage",
"ddi.summarystatistictype",
"ddi.timemethod",
"ddi.timezone",
"ddi.typeofaddress",
"ddi.typeofconceptgroup",
"ddi.typeoffrequency",
"ddi.typeofinstrument",
"ddi.typeofnote",
"ddi.typeoftelephone",
"ddi.typeoftranslationmethod",
"gesis.kategorienschemawahlstudien",
"gesis.rexconcepts",