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.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- 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
|