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,435 @@
1
+ name: temporal
2
+ title: Temporal and Time-Related Value Sets
3
+ description: Value sets for temporal concepts including days, months, time periods, and durations
4
+ id: https://w3id.org/linkml/valuesets/time/temporal
5
+ imports:
6
+ - linkml:types
7
+ prefixes:
8
+ valuesets: https://w3id.org/valuesets/
9
+ TIME: http://www.w3.org/2006/time#
10
+ greg: http://www.w3.org/ns/time/gregorian#
11
+ OPMI: http://purl.obolibrary.org/obo/OPMI_
12
+ NCIT: http://purl.obolibrary.org/obo/NCIT_
13
+ UO: http://purl.obolibrary.org/obo/UO_
14
+ ENVO: http://purl.obolibrary.org/obo/ENVO_
15
+ default_prefix: valuesets
16
+ slots:
17
+ day_of_week:
18
+ description: Days of the week following ISO 8601 standard (Monday = 1)
19
+ range: DayOfWeek
20
+ month:
21
+ description: Months of the year
22
+ range: Month
23
+ quarter:
24
+ description: Calendar quarters
25
+ range: Quarter
26
+ season:
27
+ description: Seasons of the year (Northern Hemisphere)
28
+ range: Season
29
+ time_period:
30
+ description: Common time periods and intervals
31
+ range: TimePeriod
32
+ time_of_day:
33
+ description: Common times of day
34
+ range: TimeOfDay
35
+ business_time_frame:
36
+ description: Common business and financial time frames
37
+ range: BusinessTimeFrame
38
+ geological_era:
39
+ description: Major geological eras
40
+ range: GeologicalEra
41
+ historical_period:
42
+ description: Major historical periods
43
+ range: HistoricalPeriod
44
+ enums:
45
+ DayOfWeek:
46
+ description: Days of the week following ISO 8601 standard (Monday = 1)
47
+ permissible_values:
48
+ MONDAY:
49
+ description: Monday (first day of week in ISO 8601)
50
+ meaning: TIME:Monday
51
+ exact_mappings:
52
+ - OPMI:0000084
53
+ - NCIT:C64962
54
+ annotations:
55
+ iso_number: 1
56
+ abbreviation: Mon
57
+ TUESDAY:
58
+ description: Tuesday
59
+ meaning: TIME:Tuesday
60
+ exact_mappings:
61
+ - OPMI:0000085
62
+ - NCIT:C64963
63
+ annotations:
64
+ iso_number: 2
65
+ abbreviation: Tue
66
+ WEDNESDAY:
67
+ description: Wednesday
68
+ meaning: TIME:Wednesday
69
+ exact_mappings:
70
+ - OPMI:0000086
71
+ - NCIT:C64964
72
+ annotations:
73
+ iso_number: 3
74
+ abbreviation: Wed
75
+ THURSDAY:
76
+ description: Thursday
77
+ meaning: TIME:Thursday
78
+ exact_mappings:
79
+ - OPMI:0000087
80
+ - NCIT:C64965
81
+ annotations:
82
+ iso_number: 4
83
+ abbreviation: Thu
84
+ FRIDAY:
85
+ description: Friday
86
+ meaning: TIME:Friday
87
+ exact_mappings:
88
+ - OPMI:0000088
89
+ - NCIT:C64966
90
+ annotations:
91
+ iso_number: 5
92
+ abbreviation: Fri
93
+ SATURDAY:
94
+ description: Saturday
95
+ meaning: TIME:Saturday
96
+ exact_mappings:
97
+ - OPMI:0000089
98
+ - NCIT:C64967
99
+ annotations:
100
+ iso_number: 6
101
+ abbreviation: Sat
102
+ SUNDAY:
103
+ description: Sunday (last day of week in ISO 8601)
104
+ meaning: TIME:Sunday
105
+ exact_mappings:
106
+ - OPMI:0000090
107
+ - NCIT:C64968
108
+ annotations:
109
+ iso_number: 7
110
+ abbreviation: Sun
111
+ Month:
112
+ description: Months of the year
113
+ permissible_values:
114
+ JANUARY:
115
+ description: January
116
+ meaning: greg:January
117
+ exact_mappings:
118
+ - OPMI:0000071
119
+ - NCIT:C106180
120
+ annotations:
121
+ month_number: 1
122
+ abbreviation: Jan
123
+ days: 31
124
+ FEBRUARY:
125
+ description: February
126
+ meaning: greg:February
127
+ exact_mappings:
128
+ - OPMI:0000072
129
+ - NCIT:C106181
130
+ annotations:
131
+ month_number: 2
132
+ abbreviation: Feb
133
+ days: 28/29
134
+ MARCH:
135
+ description: March
136
+ meaning: greg:March
137
+ exact_mappings:
138
+ - OPMI:0000073
139
+ - NCIT:C106182
140
+ annotations:
141
+ month_number: 3
142
+ abbreviation: Mar
143
+ days: 31
144
+ APRIL:
145
+ description: April
146
+ meaning: greg:April
147
+ exact_mappings:
148
+ - OPMI:0000074
149
+ - NCIT:C106183
150
+ annotations:
151
+ month_number: 4
152
+ abbreviation: Apr
153
+ days: 30
154
+ MAY:
155
+ description: May
156
+ meaning: greg:May
157
+ exact_mappings:
158
+ - OPMI:0000075
159
+ - NCIT:C106184
160
+ annotations:
161
+ month_number: 5
162
+ abbreviation: May
163
+ days: 31
164
+ JUNE:
165
+ description: June
166
+ meaning: greg:June
167
+ exact_mappings:
168
+ - OPMI:0000076
169
+ - NCIT:C106185
170
+ annotations:
171
+ month_number: 6
172
+ abbreviation: Jun
173
+ days: 30
174
+ JULY:
175
+ description: July
176
+ meaning: greg:July
177
+ exact_mappings:
178
+ - OPMI:0000077
179
+ - NCIT:C106186
180
+ annotations:
181
+ month_number: 7
182
+ abbreviation: Jul
183
+ days: 31
184
+ AUGUST:
185
+ description: August
186
+ meaning: greg:August
187
+ exact_mappings:
188
+ - OPMI:0000078
189
+ - NCIT:C106187
190
+ annotations:
191
+ month_number: 8
192
+ abbreviation: Aug
193
+ days: 31
194
+ SEPTEMBER:
195
+ description: September
196
+ meaning: greg:September
197
+ exact_mappings:
198
+ - OPMI:0000079
199
+ - NCIT:C106188
200
+ annotations:
201
+ month_number: 9
202
+ abbreviation: Sep
203
+ days: 30
204
+ OCTOBER:
205
+ description: October
206
+ meaning: greg:October
207
+ exact_mappings:
208
+ - OPMI:0000080
209
+ - NCIT:C106189
210
+ annotations:
211
+ month_number: 10
212
+ abbreviation: Oct
213
+ days: 31
214
+ NOVEMBER:
215
+ description: November
216
+ meaning: greg:November
217
+ exact_mappings:
218
+ - OPMI:0000081
219
+ - NCIT:C106191
220
+ annotations:
221
+ month_number: 11
222
+ abbreviation: Nov
223
+ days: 30
224
+ DECEMBER:
225
+ description: December
226
+ meaning: greg:December
227
+ exact_mappings:
228
+ - OPMI:0000082
229
+ - NCIT:C106192
230
+ annotations:
231
+ month_number: 12
232
+ abbreviation: Dec
233
+ days: 31
234
+ Quarter:
235
+ description: Calendar quarters
236
+ permissible_values:
237
+ Q1:
238
+ description: First quarter (January-March)
239
+ annotations:
240
+ months: Jan-Mar
241
+ Q2:
242
+ description: Second quarter (April-June)
243
+ annotations:
244
+ months: Apr-Jun
245
+ Q3:
246
+ description: Third quarter (July-September)
247
+ annotations:
248
+ months: Jul-Sep
249
+ Q4:
250
+ description: Fourth quarter (October-December)
251
+ annotations:
252
+ months: Oct-Dec
253
+ Season:
254
+ description: Seasons of the year (Northern Hemisphere)
255
+ permissible_values:
256
+ SPRING:
257
+ description: Spring season
258
+ meaning: NCIT:C94731
259
+ annotations:
260
+ months: Mar-May
261
+ astronomical_start: ~Mar 20
262
+ SUMMER:
263
+ description: Summer season
264
+ meaning: NCIT:C94732
265
+ annotations:
266
+ months: Jun-Aug
267
+ astronomical_start: ~Jun 21
268
+ AUTUMN:
269
+ description: Autumn/Fall season
270
+ meaning: NCIT:C94733
271
+ annotations:
272
+ months: Sep-Nov
273
+ astronomical_start: ~Sep 22
274
+ aliases: Fall
275
+ WINTER:
276
+ description: Winter season
277
+ meaning: NCIT:C94730
278
+ annotations:
279
+ months: Dec-Feb
280
+ astronomical_start: ~Dec 21
281
+ TimePeriod:
282
+ description: Common time periods and intervals
283
+ permissible_values:
284
+ HOURLY:
285
+ description: Every hour
286
+ annotations:
287
+ ucum: h
288
+ DAILY:
289
+ description: Every day
290
+ annotations:
291
+ ucum: d
292
+ WEEKLY:
293
+ description: Every week
294
+ annotations:
295
+ ucum: wk
296
+ BIWEEKLY:
297
+ description: Every two weeks
298
+ annotations:
299
+ ucum: 2.wk
300
+ MONTHLY:
301
+ description: Every month
302
+ annotations:
303
+ ucum: mo
304
+ QUARTERLY:
305
+ description: Every quarter (3 months)
306
+ annotations:
307
+ ucum: 3.mo
308
+ SEMIANNUALLY:
309
+ description: Every six months
310
+ annotations:
311
+ ucum: 6.mo
312
+ ANNUALLY:
313
+ description: Every year
314
+ annotations:
315
+ ucum: a
316
+ BIANNUALLY:
317
+ description: Every two years
318
+ annotations:
319
+ ucum: 2.a
320
+ TimeOfDay:
321
+ description: Common times of day
322
+ permissible_values:
323
+ DAWN:
324
+ description: Dawn (first light)
325
+ annotations:
326
+ typical_time: 05:00-06:00
327
+ MORNING:
328
+ description: Morning
329
+ annotations:
330
+ typical_time: 06:00-12:00
331
+ NOON:
332
+ description: Noon/Midday
333
+ annotations:
334
+ typical_time: 720
335
+ AFTERNOON:
336
+ description: Afternoon
337
+ annotations:
338
+ typical_time: 12:00-18:00
339
+ EVENING:
340
+ description: Evening
341
+ annotations:
342
+ typical_time: 18:00-21:00
343
+ NIGHT:
344
+ description: Night
345
+ annotations:
346
+ typical_time: 21:00-05:00
347
+ MIDNIGHT:
348
+ description: Midnight
349
+ annotations:
350
+ typical_time: 00:00
351
+ BusinessTimeFrame:
352
+ description: Common business and financial time frames
353
+ permissible_values:
354
+ REAL_TIME:
355
+ description: Real-time/instantaneous
356
+ INTRADAY:
357
+ description: Within the same day
358
+ T_PLUS_1:
359
+ description: Trade date plus one business day
360
+ annotations:
361
+ abbreviation: T+1
362
+ T_PLUS_2:
363
+ description: Trade date plus two business days
364
+ annotations:
365
+ abbreviation: T+2
366
+ T_PLUS_3:
367
+ description: Trade date plus three business days
368
+ annotations:
369
+ abbreviation: T+3
370
+ END_OF_DAY:
371
+ description: End of business day
372
+ annotations:
373
+ abbreviation: EOD
374
+ END_OF_WEEK:
375
+ description: End of business week
376
+ annotations:
377
+ abbreviation: EOW
378
+ END_OF_MONTH:
379
+ description: End of calendar month
380
+ annotations:
381
+ abbreviation: EOM
382
+ END_OF_QUARTER:
383
+ description: End of calendar quarter
384
+ annotations:
385
+ abbreviation: EOQ
386
+ END_OF_YEAR:
387
+ description: End of calendar year
388
+ annotations:
389
+ abbreviation: EOY
390
+ YEAR_TO_DATE:
391
+ description: From beginning of year to current date
392
+ annotations:
393
+ abbreviation: YTD
394
+ MONTH_TO_DATE:
395
+ description: From beginning of month to current date
396
+ annotations:
397
+ abbreviation: MTD
398
+ QUARTER_TO_DATE:
399
+ description: From beginning of quarter to current date
400
+ annotations:
401
+ abbreviation: QTD
402
+ GeologicalEra:
403
+ description: Major geological eras
404
+ permissible_values:
405
+ PRECAMBRIAN:
406
+ description: Precambrian (4.6 billion - 541 million years ago)
407
+ PALEOZOIC:
408
+ description: Paleozoic Era (541 - 252 million years ago)
409
+ MESOZOIC:
410
+ description: Mesozoic Era (252 - 66 million years ago)
411
+ CENOZOIC:
412
+ description: Cenozoic Era (66 million years ago - present)
413
+ HistoricalPeriod:
414
+ description: Major historical periods
415
+ permissible_values:
416
+ PREHISTORIC:
417
+ description: Before written records
418
+ ANCIENT:
419
+ description: Ancient history (3000 BCE - 500 CE)
420
+ CLASSICAL_ANTIQUITY:
421
+ description: Classical antiquity (8th century BCE - 6th century CE)
422
+ MIDDLE_AGES:
423
+ description: Middle Ages (5th - 15th century)
424
+ RENAISSANCE:
425
+ description: Renaissance (14th - 17th century)
426
+ EARLY_MODERN:
427
+ description: Early modern period (15th - 18th century)
428
+ INDUSTRIAL_AGE:
429
+ description: Industrial age (1760 - 1840)
430
+ MODERN:
431
+ description: Modern era (19th century - mid 20th century)
432
+ CONTEMPORARY:
433
+ description: Contemporary period (mid 20th century - present)
434
+ DIGITAL_AGE:
435
+ description: Digital/Information age (1950s - present)
@@ -0,0 +1,15 @@
1
+ name: types
2
+ title: Common Type Definitions
3
+ description: Common type definitions for value sets
4
+ id: https://w3id.org/linkml/valuesets/types
5
+ imports:
6
+ - linkml:types
7
+ prefixes:
8
+ linkml: https://w3id.org/linkml/
9
+ cvs: https://w3id.org/linkml/valuesets/
10
+ valuesets: https://w3id.org/valuesets/
11
+ default_prefix: valuesets
12
+ types:
13
+ CountScalar:
14
+ typeof: integer
15
+ minimum_value: 0