valuesets 0.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of valuesets might be problematic. Click here for more details.

Files changed (248) hide show
  1. valuesets/__init__.py +7 -0
  2. valuesets/_version.py +8 -0
  3. valuesets/datamodel/valuesets.py +13796 -0
  4. valuesets/datamodel/valuesets_dataclass.py +24503 -0
  5. valuesets/datamodel/valuesets_pydantic.py +13796 -0
  6. valuesets/enums/__init__.py +590 -0
  7. valuesets/enums/academic/__init__.py +1 -0
  8. valuesets/enums/academic/research.py +559 -0
  9. valuesets/enums/analytical_chemistry/__init__.py +1 -0
  10. valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
  11. valuesets/enums/bio/__init__.py +1 -0
  12. valuesets/enums/bio/biological_colors.py +238 -0
  13. valuesets/enums/bio/cell_cycle.py +180 -0
  14. valuesets/enums/bio/currency_chemicals.py +52 -0
  15. valuesets/enums/bio/developmental_stages.py +103 -0
  16. valuesets/enums/bio/genome_features.py +182 -0
  17. valuesets/enums/bio/genomics.py +91 -0
  18. valuesets/enums/bio/go_aspect.py +32 -0
  19. valuesets/enums/bio/go_causality.py +58 -0
  20. valuesets/enums/bio/go_evidence.py +129 -0
  21. valuesets/enums/bio/human_developmental_stages.py +62 -0
  22. valuesets/enums/bio/insdc_geographic_locations.py +591 -0
  23. valuesets/enums/bio/insdc_missing_values.py +49 -0
  24. valuesets/enums/bio/lipid_categories.py +67 -0
  25. valuesets/enums/bio/mouse_developmental_stages.py +62 -0
  26. valuesets/enums/bio/plant_biology.py +86 -0
  27. valuesets/enums/bio/plant_developmental_stages.py +54 -0
  28. valuesets/enums/bio/plant_sex.py +81 -0
  29. valuesets/enums/bio/protein_evidence.py +61 -0
  30. valuesets/enums/bio/proteomics_standards.py +123 -0
  31. valuesets/enums/bio/psi_mi.py +306 -0
  32. valuesets/enums/bio/relationship_to_oxygen.py +37 -0
  33. valuesets/enums/bio/sequence_alphabets.py +449 -0
  34. valuesets/enums/bio/sequence_chemistry.py +357 -0
  35. valuesets/enums/bio/sequencing_platforms.py +302 -0
  36. valuesets/enums/bio/structural_biology.py +320 -0
  37. valuesets/enums/bio/taxonomy.py +238 -0
  38. valuesets/enums/bio/trophic_levels.py +85 -0
  39. valuesets/enums/bio/uniprot_species.py +344 -0
  40. valuesets/enums/bio/viral_genome_types.py +47 -0
  41. valuesets/enums/bioprocessing/__init__.py +1 -0
  42. valuesets/enums/bioprocessing/scale_up.py +249 -0
  43. valuesets/enums/business/__init__.py +1 -0
  44. valuesets/enums/business/human_resources.py +275 -0
  45. valuesets/enums/business/industry_classifications.py +181 -0
  46. valuesets/enums/business/management_operations.py +228 -0
  47. valuesets/enums/business/organizational_structures.py +236 -0
  48. valuesets/enums/business/quality_management.py +181 -0
  49. valuesets/enums/business/supply_chain.py +232 -0
  50. valuesets/enums/chemistry/__init__.py +1 -0
  51. valuesets/enums/chemistry/chemical_entities.py +315 -0
  52. valuesets/enums/chemistry/reaction_directionality.py +65 -0
  53. valuesets/enums/chemistry/reactions.py +256 -0
  54. valuesets/enums/clinical/__init__.py +1 -0
  55. valuesets/enums/clinical/nih_demographics.py +177 -0
  56. valuesets/enums/clinical/phenopackets.py +254 -0
  57. valuesets/enums/common_value_sets.py +8791 -0
  58. valuesets/enums/computing/__init__.py +1 -0
  59. valuesets/enums/computing/file_formats.py +294 -0
  60. valuesets/enums/computing/maturity_levels.py +196 -0
  61. valuesets/enums/computing/mime_types.py +227 -0
  62. valuesets/enums/confidence_levels.py +168 -0
  63. valuesets/enums/contributor.py +30 -0
  64. valuesets/enums/core.py +42 -0
  65. valuesets/enums/data/__init__.py +1 -0
  66. valuesets/enums/data/data_absent_reason.py +53 -0
  67. valuesets/enums/data_science/__init__.py +1 -0
  68. valuesets/enums/data_science/binary_classification.py +87 -0
  69. valuesets/enums/data_science/emotion_classification.py +66 -0
  70. valuesets/enums/data_science/priority_severity.py +73 -0
  71. valuesets/enums/data_science/quality_control.py +46 -0
  72. valuesets/enums/data_science/sentiment_analysis.py +50 -0
  73. valuesets/enums/data_science/text_classification.py +97 -0
  74. valuesets/enums/demographics.py +206 -0
  75. valuesets/enums/ecological_interactions.py +151 -0
  76. valuesets/enums/energy/__init__.py +1 -0
  77. valuesets/enums/energy/energy.py +343 -0
  78. valuesets/enums/energy/fossil_fuels.py +29 -0
  79. valuesets/enums/energy/nuclear/__init__.py +1 -0
  80. valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
  81. valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
  82. valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
  83. valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
  84. valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
  85. valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
  86. valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
  87. valuesets/enums/energy/nuclear/reactor_types.py +163 -0
  88. valuesets/enums/environmental_health/__init__.py +1 -0
  89. valuesets/enums/environmental_health/exposures.py +265 -0
  90. valuesets/enums/geography/__init__.py +1 -0
  91. valuesets/enums/geography/geographic_codes.py +741 -0
  92. valuesets/enums/health/__init__.py +12 -0
  93. valuesets/enums/health/vaccination.py +98 -0
  94. valuesets/enums/health.py +36 -0
  95. valuesets/enums/health_base.py +36 -0
  96. valuesets/enums/healthcare.py +45 -0
  97. valuesets/enums/industry/__init__.py +1 -0
  98. valuesets/enums/industry/extractive_industry.py +94 -0
  99. valuesets/enums/industry/mining.py +388 -0
  100. valuesets/enums/industry/safety_colors.py +201 -0
  101. valuesets/enums/investigation.py +27 -0
  102. valuesets/enums/materials_science/__init__.py +1 -0
  103. valuesets/enums/materials_science/characterization_methods.py +112 -0
  104. valuesets/enums/materials_science/crystal_structures.py +76 -0
  105. valuesets/enums/materials_science/material_properties.py +119 -0
  106. valuesets/enums/materials_science/material_types.py +104 -0
  107. valuesets/enums/materials_science/pigments_dyes.py +198 -0
  108. valuesets/enums/materials_science/synthesis_methods.py +109 -0
  109. valuesets/enums/medical/__init__.py +1 -0
  110. valuesets/enums/medical/clinical.py +277 -0
  111. valuesets/enums/medical/neuroimaging.py +119 -0
  112. valuesets/enums/mining_processing.py +302 -0
  113. valuesets/enums/physics/__init__.py +1 -0
  114. valuesets/enums/physics/states_of_matter.py +46 -0
  115. valuesets/enums/social/__init__.py +1 -0
  116. valuesets/enums/social/person_status.py +29 -0
  117. valuesets/enums/spatial/__init__.py +1 -0
  118. valuesets/enums/spatial/spatial_qualifiers.py +246 -0
  119. valuesets/enums/statistics/__init__.py +5 -0
  120. valuesets/enums/statistics/prediction_outcomes.py +31 -0
  121. valuesets/enums/statistics.py +31 -0
  122. valuesets/enums/time/__init__.py +1 -0
  123. valuesets/enums/time/temporal.py +254 -0
  124. valuesets/enums/units/__init__.py +1 -0
  125. valuesets/enums/units/measurements.py +310 -0
  126. valuesets/enums/visual/__init__.py +1 -0
  127. valuesets/enums/visual/colors.py +376 -0
  128. valuesets/generators/__init__.py +19 -0
  129. valuesets/generators/auto_slot_injector.py +280 -0
  130. valuesets/generators/enhanced_pydantic_generator.py +100 -0
  131. valuesets/generators/enum_slot_generator.py +201 -0
  132. valuesets/generators/modular_rich_generator.py +353 -0
  133. valuesets/generators/prefix_standardizer.py +198 -0
  134. valuesets/generators/rich_enum.py +127 -0
  135. valuesets/generators/rich_pydantic_generator.py +310 -0
  136. valuesets/generators/smart_slot_syncer.py +428 -0
  137. valuesets/generators/sssom_generator.py +394 -0
  138. valuesets/merged/merged_hierarchy.yaml +21649 -0
  139. valuesets/schema/README.md +3 -0
  140. valuesets/schema/academic/research.yaml +911 -0
  141. valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
  142. valuesets/schema/bio/bio_entities.yaml +364 -0
  143. valuesets/schema/bio/biological_colors.yaml +434 -0
  144. valuesets/schema/bio/cell_cycle.yaml +309 -0
  145. valuesets/schema/bio/currency_chemicals.yaml +70 -0
  146. valuesets/schema/bio/developmental_stages.yaml +226 -0
  147. valuesets/schema/bio/genome_features.yaml +342 -0
  148. valuesets/schema/bio/genomics.yaml +101 -0
  149. valuesets/schema/bio/go_aspect.yaml +39 -0
  150. valuesets/schema/bio/go_causality.yaml +119 -0
  151. valuesets/schema/bio/go_evidence.yaml +215 -0
  152. valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
  153. valuesets/schema/bio/insdc_missing_values.yaml +85 -0
  154. valuesets/schema/bio/lipid_categories.yaml +72 -0
  155. valuesets/schema/bio/plant_biology.yaml +125 -0
  156. valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
  157. valuesets/schema/bio/plant_sex.yaml +108 -0
  158. valuesets/schema/bio/protein_evidence.yaml +63 -0
  159. valuesets/schema/bio/proteomics_standards.yaml +116 -0
  160. valuesets/schema/bio/psi_mi.yaml +400 -0
  161. valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
  162. valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
  163. valuesets/schema/bio/sequence_chemistry.yaml +477 -0
  164. valuesets/schema/bio/sequencing_platforms.yaml +515 -0
  165. valuesets/schema/bio/structural_biology.yaml +428 -0
  166. valuesets/schema/bio/taxonomy.yaml +453 -0
  167. valuesets/schema/bio/trophic_levels.yaml +118 -0
  168. valuesets/schema/bio/uniprot_species.yaml +1209 -0
  169. valuesets/schema/bio/viral_genome_types.yaml +99 -0
  170. valuesets/schema/bioprocessing/scale_up.yaml +458 -0
  171. valuesets/schema/business/human_resources.yaml +752 -0
  172. valuesets/schema/business/industry_classifications.yaml +448 -0
  173. valuesets/schema/business/management_operations.yaml +602 -0
  174. valuesets/schema/business/organizational_structures.yaml +645 -0
  175. valuesets/schema/business/quality_management.yaml +502 -0
  176. valuesets/schema/business/supply_chain.yaml +688 -0
  177. valuesets/schema/chemistry/chemical_entities.yaml +639 -0
  178. valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
  179. valuesets/schema/chemistry/reactions.yaml +442 -0
  180. valuesets/schema/clinical/nih_demographics.yaml +285 -0
  181. valuesets/schema/clinical/phenopackets.yaml +429 -0
  182. valuesets/schema/computing/file_formats.yaml +631 -0
  183. valuesets/schema/computing/maturity_levels.yaml +229 -0
  184. valuesets/schema/computing/mime_types.yaml +266 -0
  185. valuesets/schema/confidence_levels.yaml +206 -0
  186. valuesets/schema/contributor.yaml +30 -0
  187. valuesets/schema/core.yaml +55 -0
  188. valuesets/schema/data/data_absent_reason.yaml +82 -0
  189. valuesets/schema/data_science/binary_classification.yaml +125 -0
  190. valuesets/schema/data_science/emotion_classification.yaml +109 -0
  191. valuesets/schema/data_science/priority_severity.yaml +122 -0
  192. valuesets/schema/data_science/quality_control.yaml +68 -0
  193. valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
  194. valuesets/schema/data_science/text_classification.yaml +135 -0
  195. valuesets/schema/demographics.yaml +238 -0
  196. valuesets/schema/ecological_interactions.yaml +298 -0
  197. valuesets/schema/energy/energy.yaml +595 -0
  198. valuesets/schema/energy/fossil_fuels.yaml +28 -0
  199. valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
  200. valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
  201. valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
  202. valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
  203. valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
  204. valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
  205. valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
  206. valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
  207. valuesets/schema/environmental_health/exposures.yaml +355 -0
  208. valuesets/schema/generated_slots.yaml +1828 -0
  209. valuesets/schema/geography/geographic_codes.yaml +1018 -0
  210. valuesets/schema/health/vaccination.yaml +102 -0
  211. valuesets/schema/health.yaml +38 -0
  212. valuesets/schema/healthcare.yaml +53 -0
  213. valuesets/schema/industry/extractive_industry.yaml +89 -0
  214. valuesets/schema/industry/mining.yaml +888 -0
  215. valuesets/schema/industry/safety_colors.yaml +375 -0
  216. valuesets/schema/investigation.yaml +64 -0
  217. valuesets/schema/materials_science/characterization_methods.yaml +193 -0
  218. valuesets/schema/materials_science/crystal_structures.yaml +138 -0
  219. valuesets/schema/materials_science/material_properties.yaml +135 -0
  220. valuesets/schema/materials_science/material_types.yaml +151 -0
  221. valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
  222. valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
  223. valuesets/schema/medical/clinical.yaml +610 -0
  224. valuesets/schema/medical/neuroimaging.yaml +325 -0
  225. valuesets/schema/mining_processing.yaml +295 -0
  226. valuesets/schema/physics/states_of_matter.yaml +46 -0
  227. valuesets/schema/slot_mixins.yaml +143 -0
  228. valuesets/schema/social/person_status.yaml +28 -0
  229. valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
  230. valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
  231. valuesets/schema/statistics.yaml +34 -0
  232. valuesets/schema/time/temporal.yaml +435 -0
  233. valuesets/schema/types.yaml +15 -0
  234. valuesets/schema/units/measurements.yaml +675 -0
  235. valuesets/schema/valuesets.yaml +100 -0
  236. valuesets/schema/visual/colors.yaml +778 -0
  237. valuesets/utils/__init__.py +6 -0
  238. valuesets/utils/comparison.py +102 -0
  239. valuesets/utils/expand_dynamic_enums.py +414 -0
  240. valuesets/utils/mapping_utils.py +236 -0
  241. valuesets/validators/__init__.py +11 -0
  242. valuesets/validators/enum_evaluator.py +669 -0
  243. valuesets/validators/oak_config.yaml +70 -0
  244. valuesets/validators/validate_with_ols.py +241 -0
  245. valuesets-0.3.1.dist-info/METADATA +395 -0
  246. valuesets-0.3.1.dist-info/RECORD +248 -0
  247. valuesets-0.3.1.dist-info/WHEEL +4 -0
  248. valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,911 @@
1
+ name: research
2
+ title: Academic and Research Value Sets
3
+ description: Value sets for academic publishing, research, and scholarly communication
4
+ id: https://w3id.org/linkml/valuesets/academic/research
5
+ imports:
6
+ - linkml:types
7
+ prefixes:
8
+ valuesets: https://w3id.org/valuesets/
9
+ DCMITYPE: http://purl.org/dc/dcmitype/
10
+ FABIO: http://purl.org/spar/fabio/
11
+ SPDX: https://spdx.org/licenses/
12
+ dcterms: http://purl.org/dc/terms/
13
+ ORCID: https://orcid.org/
14
+ IAO: http://purl.obolibrary.org/obo/IAO_
15
+ NCIT: http://purl.obolibrary.org/obo/NCIT_
16
+ SIO: http://semanticscience.org/resource/SIO_
17
+ CRediT: https://credit.niso.org/contributor-roles/
18
+ MS: http://purl.obolibrary.org/obo/MS_
19
+ default_prefix: valuesets
20
+ slots:
21
+ publication:
22
+ description: Types of academic and research publications
23
+ range: PublicationType
24
+ peer_review_status:
25
+ description: Status of peer review process
26
+ range: PeerReviewStatus
27
+ academic_degree:
28
+ description: Academic degrees and qualifications
29
+ range: AcademicDegree
30
+ license:
31
+ description: Common software and content licenses
32
+ range: LicenseType
33
+ research_field:
34
+ description: Major research fields and disciplines
35
+ range: ResearchField
36
+ funding:
37
+ description: Types of research funding
38
+ range: FundingType
39
+ manuscript_section:
40
+ description: Sections of a scientific manuscript or publication
41
+ range: ManuscriptSection
42
+ research_role:
43
+ description: Roles in research and authorship
44
+ range: ResearchRole
45
+ open_access:
46
+ description: Types of open access publishing
47
+ range: OpenAccessType
48
+ citation_style:
49
+ description: Common citation and reference styles
50
+ range: CitationStyle
51
+ enums:
52
+ PublicationType:
53
+ title: Publication Type
54
+ description: Types of academic and research publications
55
+ permissible_values:
56
+ JOURNAL_ARTICLE:
57
+ description: Peer-reviewed journal article
58
+ meaning: FABIO:JournalArticle
59
+ exact_mappings:
60
+ - IAO:0000013
61
+ REVIEW_ARTICLE:
62
+ description: Review article synthesizing existing research
63
+ meaning: FABIO:ReviewArticle
64
+ close_mappings:
65
+ - IAO:0000013
66
+ RESEARCH_ARTICLE:
67
+ description: Original research article
68
+ meaning: FABIO:ResearchPaper
69
+ close_mappings:
70
+ - IAO:0000312
71
+ SHORT_COMMUNICATION:
72
+ description: Brief communication or short report
73
+ meaning: FABIO:BriefCommunication
74
+ close_mappings:
75
+ - IAO:0000088
76
+ EDITORIAL:
77
+ description: Editorial or opinion piece
78
+ meaning: FABIO:Editorial
79
+ LETTER:
80
+ description: Letter to the editor
81
+ meaning: FABIO:Letter
82
+ COMMENTARY:
83
+ description: Commentary on existing work
84
+ meaning: FABIO:Comment
85
+ PERSPECTIVE:
86
+ description: Perspective or viewpoint article
87
+ meaning: FABIO:Comment
88
+ CASE_REPORT:
89
+ description: Clinical or scientific case report
90
+ meaning: FABIO:CaseReport
91
+ close_mappings:
92
+ - IAO:0000088
93
+ - IAO:0000613
94
+ TECHNICAL_NOTE:
95
+ description: Technical or methodological note
96
+ meaning: FABIO:BriefCommunication
97
+ BOOK:
98
+ description: Complete book or monograph
99
+ meaning: FABIO:Book
100
+ close_mappings:
101
+ - IAO:0000310
102
+ BOOK_CHAPTER:
103
+ description: Chapter in an edited book
104
+ meaning: FABIO:BookChapter
105
+ EDITED_BOOK:
106
+ description: Edited collection or anthology
107
+ meaning: FABIO:EditedBook
108
+ REFERENCE_BOOK:
109
+ description: Reference work or encyclopedia
110
+ meaning: FABIO:ReferenceBook
111
+ TEXTBOOK:
112
+ description: Educational textbook
113
+ meaning: FABIO:Textbook
114
+ CONFERENCE_PAPER:
115
+ description: Full conference paper
116
+ meaning: FABIO:ConferencePaper
117
+ CONFERENCE_ABSTRACT:
118
+ description: Conference abstract
119
+ meaning: FABIO:ConferenceAbstract
120
+ CONFERENCE_POSTER:
121
+ description: Conference poster
122
+ meaning: FABIO:ConferencePoster
123
+ CONFERENCE_PROCEEDINGS:
124
+ description: Complete conference proceedings
125
+ meaning: FABIO:ConferenceProceedings
126
+ PHD_THESIS:
127
+ description: Doctoral dissertation
128
+ meaning: FABIO:DoctoralThesis
129
+ MASTERS_THESIS:
130
+ description: Master's thesis
131
+ meaning: FABIO:MastersThesis
132
+ BACHELORS_THESIS:
133
+ description: Bachelor's or undergraduate thesis
134
+ meaning: FABIO:BachelorsThesis
135
+ TECHNICAL_REPORT:
136
+ description: Technical or research report
137
+ meaning: FABIO:TechnicalReport
138
+ exact_mappings:
139
+ - IAO:0000088
140
+ WORKING_PAPER:
141
+ description: Working paper or discussion paper
142
+ meaning: FABIO:WorkingPaper
143
+ close_mappings:
144
+ - IAO:0000445
145
+ WHITE_PAPER:
146
+ description: White paper or position paper
147
+ meaning: FABIO:WhitePaper
148
+ POLICY_BRIEF:
149
+ description: Policy brief or recommendation
150
+ meaning: FABIO:PolicyBrief
151
+ exact_mappings:
152
+ - IAO:0000088
153
+ DATASET:
154
+ description: Research dataset
155
+ meaning: DCMITYPE:Dataset
156
+ SOFTWARE:
157
+ description: Research software or code
158
+ meaning: DCMITYPE:Software
159
+ DATA_PAPER:
160
+ description: Data descriptor or data paper
161
+ meaning: FABIO:DataPaper
162
+ SOFTWARE_PAPER:
163
+ description: Software or tools paper
164
+ meaning: FABIO:ResearchPaper
165
+ PROTOCOL:
166
+ description: Research protocol or methodology
167
+ meaning: FABIO:Protocol
168
+ PREPRINT:
169
+ description: Preprint or unrefereed manuscript
170
+ meaning: FABIO:Preprint
171
+ POSTPRINT:
172
+ description: Accepted manuscript after peer review
173
+ meaning: FABIO:Preprint
174
+ PUBLISHED_VERSION:
175
+ title: publication
176
+ description: Final published version
177
+ meaning: IAO:0000311
178
+ exact_mappings:
179
+ - FABIO:PublishedVersion
180
+ PATENT:
181
+ description: Patent or patent application
182
+ meaning: FABIO:Patent
183
+ exact_mappings:
184
+ - IAO:0000313
185
+ STANDARD:
186
+ description: Technical standard or specification
187
+ meaning: FABIO:Standard
188
+ close_mappings:
189
+ - IAO:0000104
190
+ BLOG_POST:
191
+ description: Academic blog post
192
+ meaning: FABIO:BlogPost
193
+ PRESENTATION:
194
+ description: Presentation slides or talk
195
+ meaning: FABIO:Presentation
196
+ LECTURE:
197
+ description: Lecture or educational material
198
+ meaning: FABIO:Presentation
199
+ ANNOTATION:
200
+ description: Annotation or scholarly note
201
+ meaning: FABIO:Annotation
202
+ PeerReviewStatus:
203
+ description: Status of peer review process
204
+ permissible_values:
205
+ NOT_PEER_REVIEWED:
206
+ description: Not peer reviewed
207
+ SUBMITTED:
208
+ description: Submitted for review
209
+ UNDER_REVIEW:
210
+ title: ongoing
211
+ description: Currently under peer review
212
+ meaning: SIO:000035
213
+ REVIEW_COMPLETE:
214
+ title: completed
215
+ description: Peer review complete
216
+ meaning: SIO:000034
217
+ MAJOR_REVISION:
218
+ description: Major revisions requested
219
+ MINOR_REVISION:
220
+ description: Minor revisions requested
221
+ ACCEPTED:
222
+ description: Accepted for publication
223
+ ACCEPTED_WITH_REVISIONS:
224
+ description: Conditionally accepted pending revisions
225
+ REJECTED:
226
+ description: Rejected after review
227
+ WITHDRAWN:
228
+ description: Withdrawn by authors
229
+ PUBLISHED:
230
+ title: publication
231
+ description: Published after review
232
+ meaning: IAO:0000311
233
+ AcademicDegree:
234
+ description: Academic degrees and qualifications
235
+ permissible_values:
236
+ BA:
237
+ title: Bachelor of Arts
238
+ meaning: NCIT:C71345
239
+ annotations:
240
+ level: undergraduate
241
+ BS:
242
+ description: Bachelor of Science
243
+ meaning: NCIT:C71351
244
+ annotations:
245
+ level: undergraduate
246
+ aliases:
247
+ - Bachelor of Science
248
+ BSC:
249
+ description: Bachelor of Science (British)
250
+ meaning: NCIT:C71351
251
+ annotations:
252
+ level: undergraduate
253
+ aliases:
254
+ - Bachelor of Science
255
+ BENG:
256
+ description: Bachelor of Engineering
257
+ meaning: NCIT:C71347
258
+ annotations:
259
+ level: undergraduate
260
+ aliases:
261
+ - Bachelor of Engineering
262
+ BFA:
263
+ description: Bachelor of Fine Arts
264
+ meaning: NCIT:C71349
265
+ annotations:
266
+ level: undergraduate
267
+ aliases:
268
+ - Bachelor of Fine Arts
269
+ LLB:
270
+ description: Bachelor of Laws
271
+ meaning: NCIT:C71352
272
+ annotations:
273
+ level: undergraduate
274
+ aliases:
275
+ - Bachelor of Science in Law
276
+ MBBS:
277
+ description: Bachelor of Medicine, Bachelor of Surgery
278
+ meaning: NCIT:C39383
279
+ annotations:
280
+ level: undergraduate
281
+ aliases:
282
+ - Doctor of Medicine
283
+ MA:
284
+ description: Master of Arts
285
+ meaning: NCIT:C71364
286
+ annotations:
287
+ level: graduate
288
+ aliases:
289
+ - Master of Arts
290
+ MS:
291
+ description: Master of Science
292
+ meaning: NCIT:C39452
293
+ annotations:
294
+ level: graduate
295
+ aliases:
296
+ - Master of Science
297
+ MSC:
298
+ description: Master of Science (British)
299
+ meaning: NCIT:C39452
300
+ annotations:
301
+ level: graduate
302
+ aliases:
303
+ - Master of Science
304
+ MBA:
305
+ description: Master of Business Administration
306
+ meaning: NCIT:C39449
307
+ aliases:
308
+ - Master of Business Administration
309
+ annotations:
310
+ level: graduate
311
+ MFA:
312
+ description: Master of Fine Arts
313
+ annotations:
314
+ level: graduate
315
+ MPH:
316
+ description: Master of Public Health
317
+ meaning: NCIT:C39451
318
+ annotations:
319
+ level: graduate
320
+ aliases:
321
+ - Master of Public Health
322
+ MENG:
323
+ description: Master of Engineering
324
+ meaning: NCIT:C71368
325
+ annotations:
326
+ level: graduate
327
+ aliases:
328
+ - Master of Engineering
329
+ MED:
330
+ description: Master of Education
331
+ meaning: NCIT:C71369
332
+ annotations:
333
+ level: graduate
334
+ aliases:
335
+ - Master of Education
336
+ LLM:
337
+ description: Master of Laws
338
+ meaning: NCIT:C71363
339
+ annotations:
340
+ level: graduate
341
+ aliases:
342
+ - Master of Law
343
+ MPHIL:
344
+ description: Master of Philosophy
345
+ annotations:
346
+ level: graduate
347
+ PHD:
348
+ description: Doctor of Philosophy
349
+ meaning: NCIT:C39387
350
+ annotations:
351
+ level: doctoral
352
+ aliases:
353
+ - Doctor of Philosophy
354
+ MD:
355
+ description: Doctor of Medicine
356
+ meaning: NCIT:C39383
357
+ annotations:
358
+ level: doctoral
359
+ aliases:
360
+ - Doctor of Medicine
361
+ JD:
362
+ description: Juris Doctor
363
+ meaning: NCIT:C71361
364
+ annotations:
365
+ level: doctoral
366
+ aliases:
367
+ - Doctor of Law
368
+ EDD:
369
+ description: Doctor of Education
370
+ meaning: NCIT:C71359
371
+ annotations:
372
+ level: doctoral
373
+ aliases:
374
+ - Doctor of Education
375
+ PSYD:
376
+ description: Doctor of Psychology
377
+ annotations:
378
+ level: doctoral
379
+ DBA:
380
+ description: Doctor of Business Administration
381
+ annotations:
382
+ level: doctoral
383
+ DPHIL:
384
+ description: Doctor of Philosophy (Oxford/Sussex)
385
+ meaning: NCIT:C39387
386
+ annotations:
387
+ level: doctoral
388
+ aliases:
389
+ - Doctor of Philosophy
390
+ SCD:
391
+ description: Doctor of Science
392
+ meaning: NCIT:C71379
393
+ annotations:
394
+ level: doctoral
395
+ aliases:
396
+ - Doctor of Science
397
+ POSTDOC:
398
+ description: Postdoctoral researcher
399
+ annotations:
400
+ level: postdoctoral
401
+ LicenseType:
402
+ description: Common software and content licenses
403
+ permissible_values:
404
+ MIT:
405
+ description: MIT License
406
+ meaning: SPDX:MIT
407
+ APACHE_2_0:
408
+ description: Apache License 2.0
409
+ meaning: SPDX:Apache-2.0
410
+ BSD_3_CLAUSE:
411
+ description: BSD 3-Clause License
412
+ meaning: SPDX:BSD-3-Clause
413
+ BSD_2_CLAUSE:
414
+ description: BSD 2-Clause License
415
+ meaning: SPDX:BSD-2-Clause
416
+ ISC:
417
+ description: ISC License
418
+ meaning: SPDX:ISC
419
+ GPL_3_0:
420
+ description: GNU General Public License v3.0
421
+ meaning: SPDX:GPL-3.0
422
+ GPL_2_0:
423
+ description: GNU General Public License v2.0
424
+ meaning: SPDX:GPL-2.0
425
+ LGPL_3_0:
426
+ description: GNU Lesser General Public License v3.0
427
+ meaning: SPDX:LGPL-3.0
428
+ LGPL_2_1:
429
+ description: GNU Lesser General Public License v2.1
430
+ meaning: SPDX:LGPL-2.1
431
+ AGPL_3_0:
432
+ description: GNU Affero General Public License v3.0
433
+ meaning: SPDX:AGPL-3.0
434
+ MPL_2_0:
435
+ description: Mozilla Public License 2.0
436
+ meaning: SPDX:MPL-2.0
437
+ CC_BY_4_0:
438
+ description: Creative Commons Attribution 4.0
439
+ meaning: SPDX:CC-BY-4.0
440
+ CC_BY_SA_4_0:
441
+ description: Creative Commons Attribution-ShareAlike 4.0
442
+ meaning: SPDX:CC-BY-SA-4.0
443
+ CC_BY_NC_4_0:
444
+ description: Creative Commons Attribution-NonCommercial 4.0
445
+ meaning: SPDX:CC-BY-NC-4.0
446
+ CC_BY_NC_SA_4_0:
447
+ description: Creative Commons Attribution-NonCommercial-ShareAlike 4.0
448
+ meaning: SPDX:CC-BY-NC-SA-4.0
449
+ CC_BY_ND_4_0:
450
+ description: Creative Commons Attribution-NoDerivatives 4.0
451
+ meaning: SPDX:CC-BY-ND-4.0
452
+ CC0_1_0:
453
+ description: Creative Commons Zero v1.0 Universal
454
+ meaning: SPDX:CC0-1.0
455
+ UNLICENSE:
456
+ description: The Unlicense
457
+ meaning: SPDX:Unlicense
458
+ PROPRIETARY:
459
+ description: Proprietary/All rights reserved
460
+ CUSTOM:
461
+ description: Custom license terms
462
+ ResearchField:
463
+ description: Major research fields and disciplines
464
+ permissible_values:
465
+ PHYSICS:
466
+ description: Physics
467
+ meaning: NCIT:C16989
468
+ CHEMISTRY:
469
+ description: Chemistry
470
+ meaning: NCIT:C16414
471
+ BIOLOGY:
472
+ description: Biology
473
+ meaning: NCIT:C16345
474
+ MATHEMATICS:
475
+ description: Mathematics
476
+ meaning: NCIT:C16825
477
+ EARTH_SCIENCES:
478
+ description: Earth sciences and geology
479
+ ASTRONOMY:
480
+ description: Astronomy and astrophysics
481
+ MEDICINE:
482
+ description: Medicine and health sciences
483
+ meaning: NCIT:C16833
484
+ NEUROSCIENCE:
485
+ title: Neuroscience and Neuropsychiatric Research
486
+ description: Neuroscience
487
+ meaning: NCIT:C15817
488
+ GENETICS:
489
+ description: Genetics and genomics
490
+ meaning: NCIT:C16624
491
+ ECOLOGY:
492
+ title: Ecology
493
+ description: Ecology and environmental science
494
+ meaning: NCIT:C16526
495
+ MICROBIOLOGY:
496
+ title: Microbiology
497
+ meaning: NCIT:C16851
498
+ BIOCHEMISTRY:
499
+ title: Biochemistry
500
+ meaning: NCIT:C16337
501
+ COMPUTER_SCIENCE:
502
+ description: Computer science
503
+ ENGINEERING:
504
+ description: Engineering
505
+ MATERIALS_SCIENCE:
506
+ description: Materials science
507
+ ARTIFICIAL_INTELLIGENCE:
508
+ description: Artificial intelligence and machine learning
509
+ ROBOTICS:
510
+ description: Robotics
511
+ PSYCHOLOGY:
512
+ description: Psychology
513
+ SOCIOLOGY:
514
+ description: Sociology
515
+ ECONOMICS:
516
+ description: Economics
517
+ POLITICAL_SCIENCE:
518
+ description: Political science
519
+ ANTHROPOLOGY:
520
+ description: Anthropology
521
+ EDUCATION:
522
+ description: Education
523
+ HISTORY:
524
+ description: History
525
+ PHILOSOPHY:
526
+ description: Philosophy
527
+ LITERATURE:
528
+ description: Literature
529
+ LINGUISTICS:
530
+ description: Linguistics
531
+ ART:
532
+ description: Art and art history
533
+ MUSIC:
534
+ description: Music and musicology
535
+ BIOINFORMATICS:
536
+ description: Bioinformatics
537
+ COMPUTATIONAL_BIOLOGY:
538
+ description: Computational biology
539
+ DATA_SCIENCE:
540
+ description: Data science
541
+ COGNITIVE_SCIENCE:
542
+ description: Cognitive science
543
+ ENVIRONMENTAL_SCIENCE:
544
+ description: Environmental science
545
+ PUBLIC_HEALTH:
546
+ description: Public health
547
+ FundingType:
548
+ description: Types of research funding
549
+ permissible_values:
550
+ GRANT:
551
+ description: Research grant
552
+ CONTRACT:
553
+ description: Research contract
554
+ FELLOWSHIP:
555
+ title: Fellowship Program
556
+ description: Fellowship or scholarship
557
+ meaning: NCIT:C20003
558
+ AWARD:
559
+ description: Prize or award
560
+ GIFT:
561
+ description: Gift or donation
562
+ INTERNAL:
563
+ description: Internal/institutional funding
564
+ INDUSTRY:
565
+ description: Industry sponsorship
566
+ GOVERNMENT:
567
+ description: Government funding
568
+ FOUNDATION:
569
+ description: Foundation or charity funding
570
+ CROWDFUNDING:
571
+ description: Crowdfunded research
572
+ ManuscriptSection:
573
+ description: Sections of a scientific manuscript or publication
574
+ permissible_values:
575
+ TITLE:
576
+ title: document title
577
+ meaning: IAO:0000305
578
+ annotations:
579
+ order: 1
580
+ AUTHORS:
581
+ title: author list
582
+ description: Authors and affiliations
583
+ meaning: IAO:0000321
584
+ annotations:
585
+ order: 2
586
+ ABSTRACT:
587
+ description: Abstract
588
+ meaning: IAO:0000315
589
+ annotations:
590
+ order: 3
591
+ typical_length: 150-300 words
592
+ KEYWORDS:
593
+ title: keywords section
594
+ meaning: IAO:0000630
595
+ annotations:
596
+ order: 4
597
+ INTRODUCTION:
598
+ title: introduction to a publication about an investigation
599
+ description: Introduction/Background
600
+ meaning: IAO:0000316
601
+ aliases:
602
+ - Background
603
+ annotations:
604
+ order: 5
605
+ LITERATURE_REVIEW:
606
+ title: related work section
607
+ description: Literature review
608
+ meaning: IAO:0000639
609
+ annotations:
610
+ order: 6
611
+ optional: true
612
+ METHODS:
613
+ title: methods section
614
+ description: Methods/Materials and Methods
615
+ meaning: IAO:0000317
616
+ aliases:
617
+ - Materials and Methods
618
+ - Methodology
619
+ - Experimental
620
+ annotations:
621
+ order: 7
622
+ RESULTS:
623
+ title: results section
624
+ meaning: IAO:0000318
625
+ aliases:
626
+ - Findings
627
+ annotations:
628
+ order: 8
629
+ DISCUSSION:
630
+ title: discussion section of a publication about an investigation
631
+ meaning: IAO:0000319
632
+ annotations:
633
+ order: 9
634
+ CONCLUSIONS:
635
+ title: conclusion section
636
+ description: Conclusions
637
+ meaning: IAO:0000615
638
+ aliases:
639
+ - Conclusion
640
+ annotations:
641
+ order: 10
642
+ RESULTS_AND_DISCUSSION:
643
+ description: Combined Results and Discussion
644
+ annotations:
645
+ order: 8
646
+ note: alternative to separate sections
647
+ ACKNOWLEDGMENTS:
648
+ title: acknowledgements section
649
+ description: Acknowledgments
650
+ meaning: IAO:0000324
651
+ aliases:
652
+ - Acknowledgements
653
+ annotations:
654
+ order: 11
655
+ REFERENCES:
656
+ title: references section
657
+ description: References/Bibliography
658
+ meaning: IAO:0000320
659
+ aliases:
660
+ - Bibliography
661
+ - Literature Cited
662
+ - Works Cited
663
+ annotations:
664
+ order: 12
665
+ APPENDICES:
666
+ title: supplementary material to a document
667
+ description: Appendices
668
+ meaning: IAO:0000326
669
+ aliases:
670
+ - Appendix
671
+ annotations:
672
+ order: 13
673
+ SUPPLEMENTARY_MATERIAL:
674
+ title: supplementary material to a document
675
+ description: Supplementary material
676
+ meaning: IAO:0000326
677
+ aliases:
678
+ - Supporting Information
679
+ - Supplemental Data
680
+ annotations:
681
+ order: 14
682
+ location: often online-only
683
+ DATA_AVAILABILITY:
684
+ title: availability section
685
+ description: Data availability statement
686
+ meaning: IAO:0000611
687
+ annotations:
688
+ order: 11.1
689
+ required_by: many journals
690
+ CODE_AVAILABILITY:
691
+ title: availability section
692
+ description: Code availability statement
693
+ meaning: IAO:0000611
694
+ annotations:
695
+ order: 11.2
696
+ AUTHOR_CONTRIBUTIONS:
697
+ title: author contributions section
698
+ description: Author contributions
699
+ meaning: IAO:0000323
700
+ aliases:
701
+ - CRediT statement
702
+ annotations:
703
+ order: 11.3
704
+ CONFLICT_OF_INTEREST:
705
+ title: conflict of interest section
706
+ description: Conflict of interest statement
707
+ meaning: IAO:0000616
708
+ aliases:
709
+ - Competing Interests
710
+ - Declaration of Interests
711
+ annotations:
712
+ order: 11.4
713
+ FUNDING:
714
+ title: funding source declaration section
715
+ description: Funding information
716
+ meaning: IAO:0000623
717
+ aliases:
718
+ - Financial Support
719
+ - Grant Information
720
+ annotations:
721
+ order: 11.5
722
+ ETHICS_STATEMENT:
723
+ title: ethical approval section
724
+ description: Ethics approval statement
725
+ meaning: IAO:0000620
726
+ annotations:
727
+ order: 11.6
728
+ SYSTEMATIC_REVIEW_METHODS:
729
+ description: Systematic review methodology (PRISMA)
730
+ annotations:
731
+ specific_to: systematic reviews
732
+ META_ANALYSIS:
733
+ description: Meta-analysis section
734
+ annotations:
735
+ specific_to: meta-analyses
736
+ STUDY_PROTOCOL:
737
+ description: Study protocol
738
+ annotations:
739
+ specific_to: clinical trials
740
+ CONSORT_FLOW_DIAGRAM:
741
+ description: CONSORT flow diagram
742
+ annotations:
743
+ specific_to: randomized trials
744
+ HIGHLIGHTS:
745
+ description: Highlights/Key points
746
+ annotations:
747
+ order: 3.5
748
+ typical_length: 3-5 bullet points
749
+ GRAPHICAL_ABSTRACT:
750
+ description: Graphical abstract
751
+ meaning: IAO:0000707
752
+ annotations:
753
+ order: 3.6
754
+ format: visual
755
+ LAY_SUMMARY:
756
+ title: author summary section
757
+ description: Lay summary/Plain language summary
758
+ meaning: IAO:0000609
759
+ annotations:
760
+ order: 3.7
761
+ audience: general public
762
+ BOX:
763
+ description: Box/Sidebar with supplementary information
764
+ annotations:
765
+ placement: variable
766
+ CASE_PRESENTATION:
767
+ title: case report section
768
+ description: Case presentation (for case reports)
769
+ meaning: IAO:0000613
770
+ annotations:
771
+ specific_to: case reports
772
+ LIMITATIONS:
773
+ title: study limitations section
774
+ description: Limitations section
775
+ meaning: IAO:0000631
776
+ annotations:
777
+ often_part_of: Discussion
778
+ FUTURE_DIRECTIONS:
779
+ title: future directions section
780
+ description: Future directions/Future work
781
+ meaning: IAO:0000625
782
+ annotations:
783
+ often_part_of: Discussion or Conclusions
784
+ GLOSSARY:
785
+ description: Glossary of terms
786
+ annotations:
787
+ placement: front or back matter
788
+ ABBREVIATIONS:
789
+ title: abbreviations section
790
+ description: List of abbreviations
791
+ meaning: IAO:0000606
792
+ annotations:
793
+ placement: front matter
794
+ OTHER_MAIN_TEXT:
795
+ description: Other main text section
796
+ annotations:
797
+ catch_all: true
798
+ OTHER_SUPPLEMENTARY:
799
+ description: Other supplementary section
800
+ annotations:
801
+ catch_all: true
802
+ ResearchRole:
803
+ description: Roles in research and authorship
804
+ permissible_values:
805
+ CONCEPTUALIZATION:
806
+ description: Ideas; formulation of research goals
807
+ meaning: CRediT:conceptualization
808
+ DATA_CURATION:
809
+ description: Data management and annotation
810
+ meaning: CRediT:data-curation
811
+ FORMAL_ANALYSIS:
812
+ description: Statistical and mathematical analysis
813
+ meaning: CRediT:formal-analysis
814
+ FUNDING_ACQUISITION:
815
+ description: Acquisition of financial support
816
+ meaning: CRediT:funding-acquisition
817
+ INVESTIGATION:
818
+ description: Conducting research and data collection
819
+ meaning: CRediT:investigation
820
+ METHODOLOGY:
821
+ description: Development of methodology
822
+ meaning: CRediT:methodology
823
+ PROJECT_ADMINISTRATION:
824
+ description: Project management and coordination
825
+ meaning: CRediT:project-administration
826
+ RESOURCES:
827
+ description: Provision of materials and tools
828
+ meaning: CRediT:resources
829
+ SOFTWARE:
830
+ description: Programming and software development
831
+ meaning: CRediT:software
832
+ SUPERVISION:
833
+ description: Oversight and mentorship
834
+ meaning: CRediT:supervision
835
+ VALIDATION:
836
+ description: Verification of results
837
+ meaning: CRediT:validation
838
+ VISUALIZATION:
839
+ description: Data presentation and visualization
840
+ meaning: CRediT:visualization
841
+ WRITING_ORIGINAL:
842
+ description: Writing - original draft
843
+ meaning: CRediT:writing-original-draft
844
+ WRITING_REVIEW:
845
+ description: Writing - review and editing
846
+ meaning: CRediT:writing-review-editing
847
+ FIRST_AUTHOR:
848
+ description: First/lead author
849
+ meaning: MS:1002034
850
+ CORRESPONDING_AUTHOR:
851
+ title: Corresponding Author indicator
852
+ meaning: NCIT:C164481
853
+ SENIOR_AUTHOR:
854
+ description: Senior/last author
855
+ annotations:
856
+ note: Often the PI or lab head
857
+ CO_AUTHOR:
858
+ title: Author
859
+ description: Co-author
860
+ meaning: NCIT:C42781
861
+ PRINCIPAL_INVESTIGATOR:
862
+ description: Principal investigator (PI)
863
+ meaning: NCIT:C19924
864
+ CO_INVESTIGATOR:
865
+ title: Co-Investigator
866
+ meaning: NCIT:C51812
867
+ COLLABORATOR:
868
+ title: Collaborator
869
+ meaning: NCIT:C84336
870
+ OpenAccessType:
871
+ description: Types of open access publishing
872
+ permissible_values:
873
+ GOLD:
874
+ description: Gold open access (published OA)
875
+ GREEN:
876
+ description: Green open access (self-archived)
877
+ HYBRID:
878
+ description: Hybrid journal with OA option
879
+ DIAMOND:
880
+ description: Diamond/platinum OA (no fees)
881
+ BRONZE:
882
+ description: Free to read but no license
883
+ CLOSED:
884
+ description: Closed access/subscription only
885
+ EMBARGO:
886
+ description: Under embargo period
887
+ CitationStyle:
888
+ description: Common citation and reference styles
889
+ permissible_values:
890
+ APA:
891
+ description: American Psychological Association
892
+ MLA:
893
+ description: Modern Language Association
894
+ CHICAGO:
895
+ description: Chicago Manual of Style
896
+ HARVARD:
897
+ description: Harvard referencing
898
+ VANCOUVER:
899
+ description: Vancouver style (biomedical)
900
+ IEEE:
901
+ description: Institute of Electrical and Electronics Engineers
902
+ ACS:
903
+ description: American Chemical Society
904
+ AMA:
905
+ description: American Medical Association
906
+ NATURE:
907
+ description: Nature style
908
+ SCIENCE:
909
+ description: Science style
910
+ CELL:
911
+ description: Cell Press style