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,1018 @@
1
+ name: valuesets-geography-geographic-codes
2
+ title: valuesets-geography-geographic-codes
3
+ description: Geographic codes and regional value sets
4
+ id: https://w3id.org/valuesets/geography/geographic-codes
5
+ prefixes:
6
+ # linkml_common: https://w3id.org/valuesets/
7
+ linkml: https://w3id.org/linkml/
8
+ ISO: http://purl.org/iso/
9
+ iso3166loc: http://id.loc.gov/vocabulary/countries/
10
+ geonames: http://sws.geonames.org/
11
+ valuesets: https://w3id.org/valuesets/
12
+ default_prefix: valuesets
13
+ slots:
14
+ country_code_iso2:
15
+ description: ISO 3166-1 alpha-2 country codes (2-letter codes)
16
+ range: CountryCodeISO2Enum
17
+ country_code_iso3:
18
+ description: ISO 3166-1 alpha-3 country codes (3-letter codes)
19
+ range: CountryCodeISO3Enum
20
+ us_state_code:
21
+ description: United States state and territory codes
22
+ range: USStateCodeEnum
23
+ canadian_province_code:
24
+ description: Canadian province and territory codes
25
+ range: CanadianProvinceCodeEnum
26
+ compass_direction:
27
+ description: Cardinal and intercardinal compass directions
28
+ range: CompassDirection
29
+ relative_direction:
30
+ description: Relative directional terms
31
+ range: RelativeDirection
32
+ wind_direction:
33
+ description: Wind direction nomenclature (named for where wind comes FROM)
34
+ range: WindDirection
35
+ continent:
36
+ description: Continental regions
37
+ range: ContinentEnum
38
+ un_region:
39
+ description: United Nations regional classifications
40
+ range: UNRegionEnum
41
+ language_code_iso639_1:
42
+ description: ISO 639-1 two-letter language codes
43
+ range: LanguageCodeISO639_1Enum
44
+ time_zone:
45
+ description: Common time zones
46
+ range: TimeZoneEnum
47
+ currency_code_iso4217:
48
+ description: ISO 4217 currency codes
49
+ range: CurrencyCodeISO4217Enum
50
+ enums:
51
+ CountryCodeISO2Enum:
52
+ description: ISO 3166-1 alpha-2 country codes (2-letter codes)
53
+ permissible_values:
54
+ US:
55
+ description: United States of America
56
+ meaning: iso3166loc:us
57
+ exact_mappings:
58
+ - GAZ:00002459
59
+ CA:
60
+ description: Canada
61
+ meaning: iso3166loc:ca
62
+ exact_mappings:
63
+ - GAZ:00002560
64
+ MX:
65
+ description: Mexico
66
+ meaning: iso3166loc:mx
67
+ exact_mappings:
68
+ - GAZ:00002852
69
+ GB:
70
+ description: United Kingdom
71
+ meaning: iso3166loc:gb
72
+ exact_mappings:
73
+ - GAZ:00002637
74
+ FR:
75
+ description: France
76
+ meaning: iso3166loc:fr
77
+ exact_mappings:
78
+ - GAZ:00002940
79
+ DE:
80
+ description: Germany
81
+ meaning: iso3166loc:de
82
+ exact_mappings:
83
+ - GAZ:00002646
84
+ IT:
85
+ description: Italy
86
+ meaning: iso3166loc:it
87
+ exact_mappings:
88
+ - GAZ:00002650
89
+ ES:
90
+ description: Spain
91
+ meaning: iso3166loc:es
92
+ exact_mappings:
93
+ - GAZ:00000591
94
+ PT:
95
+ description: Portugal
96
+ meaning: iso3166loc:pt
97
+ exact_mappings:
98
+ - GAZ:00002944
99
+ NL:
100
+ description: Netherlands
101
+ meaning: iso3166loc:nl
102
+ exact_mappings:
103
+ - GAZ:00002946
104
+ BE:
105
+ description: Belgium
106
+ meaning: iso3166loc:be
107
+ exact_mappings:
108
+ - GAZ:00002938
109
+ CH:
110
+ description: Switzerland
111
+ meaning: iso3166loc:ch
112
+ exact_mappings:
113
+ - GAZ:00002941
114
+ AT:
115
+ description: Austria
116
+ meaning: iso3166loc:at
117
+ exact_mappings:
118
+ - GAZ:00002942
119
+ SE:
120
+ description: Sweden
121
+ meaning: iso3166loc:se
122
+ exact_mappings:
123
+ - GAZ:00002729
124
+ false:
125
+ description: Norway
126
+ meaning: iso3166loc:no
127
+ exact_mappings:
128
+ - GAZ:00002699
129
+ DK:
130
+ description: Denmark
131
+ meaning: iso3166loc:dk
132
+ exact_mappings:
133
+ - GAZ:00002635
134
+ FI:
135
+ description: Finland
136
+ meaning: iso3166loc:fi
137
+ exact_mappings:
138
+ - GAZ:00002937
139
+ PL:
140
+ description: Poland
141
+ meaning: iso3166loc:pl
142
+ exact_mappings:
143
+ - GAZ:00002939
144
+ RU:
145
+ description: Russian Federation
146
+ meaning: iso3166loc:ru
147
+ exact_mappings:
148
+ - GAZ:00002721
149
+ UA:
150
+ description: Ukraine
151
+ meaning: iso3166loc:ua
152
+ exact_mappings:
153
+ - GAZ:00002724
154
+ CN:
155
+ description: China
156
+ meaning: iso3166loc:cn
157
+ exact_mappings:
158
+ - GAZ:00002845
159
+ JP:
160
+ description: Japan
161
+ meaning: iso3166loc:jp
162
+ exact_mappings:
163
+ - GAZ:00002747
164
+ KR:
165
+ description: South Korea
166
+ meaning: iso3166loc:kr
167
+ exact_mappings:
168
+ - GAZ:00002802
169
+ IN:
170
+ description: India
171
+ meaning: iso3166loc:in
172
+ exact_mappings:
173
+ - GAZ:00002839
174
+ AU:
175
+ description: Australia
176
+ meaning: iso3166loc:au
177
+ exact_mappings:
178
+ - GAZ:00000463
179
+ NZ:
180
+ description: New Zealand
181
+ meaning: iso3166loc:nz
182
+ exact_mappings:
183
+ - GAZ:00000469
184
+ BR:
185
+ description: Brazil
186
+ meaning: iso3166loc:br
187
+ exact_mappings:
188
+ - GAZ:00002828
189
+ AR:
190
+ description: Argentina
191
+ meaning: iso3166loc:ar
192
+ exact_mappings:
193
+ - GAZ:00002928
194
+ CL:
195
+ description: Chile
196
+ meaning: iso3166loc:cl
197
+ exact_mappings:
198
+ - GAZ:00002825
199
+ CO:
200
+ description: Colombia
201
+ meaning: iso3166loc:co
202
+ exact_mappings:
203
+ - GAZ:00002929
204
+ PE:
205
+ description: Peru
206
+ meaning: iso3166loc:pe
207
+ exact_mappings:
208
+ - GAZ:00002932
209
+ VE:
210
+ description: Venezuela
211
+ meaning: iso3166loc:ve
212
+ exact_mappings:
213
+ - GAZ:00002931
214
+ ZA:
215
+ description: South Africa
216
+ meaning: iso3166loc:za
217
+ exact_mappings:
218
+ - GAZ:00001094
219
+ EG:
220
+ description: Egypt
221
+ meaning: iso3166loc:eg
222
+ exact_mappings:
223
+ - GAZ:00003934
224
+ NG:
225
+ description: Nigeria
226
+ meaning: iso3166loc:ng
227
+ exact_mappings:
228
+ - GAZ:00000912
229
+ KE:
230
+ description: Kenya
231
+ meaning: iso3166loc:ke
232
+ exact_mappings:
233
+ - GAZ:00001101
234
+ IL:
235
+ description: Israel
236
+ meaning: iso3166loc:il
237
+ exact_mappings:
238
+ - GAZ:00002476
239
+ SA:
240
+ description: Saudi Arabia
241
+ meaning: iso3166loc:sa
242
+ exact_mappings:
243
+ - GAZ:00005279
244
+ AE:
245
+ description: United Arab Emirates
246
+ meaning: iso3166loc:ae
247
+ exact_mappings:
248
+ - GAZ:00005282
249
+ TR:
250
+ description: Turkey
251
+ meaning: iso3166loc:tr
252
+ exact_mappings:
253
+ - GAZ:00000558
254
+ GR:
255
+ description: Greece
256
+ meaning: iso3166loc:gr
257
+ exact_mappings:
258
+ - GAZ:00002945
259
+ IE:
260
+ description: Ireland
261
+ meaning: iso3166loc:ie
262
+ exact_mappings:
263
+ - GAZ:00004018
264
+ SG:
265
+ description: Singapore
266
+ meaning: iso3166loc:sg
267
+ exact_mappings:
268
+ - GAZ:00003923
269
+ MY:
270
+ description: Malaysia
271
+ meaning: iso3166loc:my
272
+ exact_mappings:
273
+ - GAZ:00003902
274
+ TH:
275
+ description: Thailand
276
+ meaning: iso3166loc:th
277
+ exact_mappings:
278
+ - GAZ:00003744
279
+ ID:
280
+ description: Indonesia
281
+ meaning: iso3166loc:id
282
+ exact_mappings:
283
+ - GAZ:00003727
284
+ PH:
285
+ description: Philippines
286
+ meaning: iso3166loc:ph
287
+ exact_mappings:
288
+ - GAZ:00004525
289
+ VN:
290
+ description: Vietnam
291
+ meaning: iso3166loc:vn
292
+ exact_mappings:
293
+ - GAZ:00003756
294
+ PK:
295
+ description: Pakistan
296
+ meaning: iso3166loc:pk
297
+ exact_mappings:
298
+ - GAZ:00005246
299
+ BD:
300
+ description: Bangladesh
301
+ meaning: iso3166loc:bd
302
+ exact_mappings:
303
+ - GAZ:00003750
304
+ CountryCodeISO3Enum:
305
+ description: ISO 3166-1 alpha-3 country codes (3-letter codes)
306
+ permissible_values:
307
+ USA:
308
+ description: United States of America
309
+ meaning: iso3166loc:us
310
+ exact_mappings:
311
+ - GAZ:00002459
312
+ CAN:
313
+ description: Canada
314
+ meaning: iso3166loc:ca
315
+ exact_mappings:
316
+ - GAZ:00002560
317
+ MEX:
318
+ description: Mexico
319
+ meaning: iso3166loc:mx
320
+ exact_mappings:
321
+ - GAZ:00002852
322
+ GBR:
323
+ description: United Kingdom
324
+ meaning: iso3166loc:gb
325
+ exact_mappings:
326
+ - GAZ:00002637
327
+ FRA:
328
+ description: France
329
+ meaning: iso3166loc:fr
330
+ exact_mappings:
331
+ - GAZ:00002940
332
+ DEU:
333
+ description: Germany
334
+ meaning: iso3166loc:de
335
+ exact_mappings:
336
+ - GAZ:00002646
337
+ ITA:
338
+ description: Italy
339
+ meaning: iso3166loc:it
340
+ exact_mappings:
341
+ - GAZ:00002650
342
+ ESP:
343
+ description: Spain
344
+ meaning: iso3166loc:es
345
+ exact_mappings:
346
+ - GAZ:00000591
347
+ PRT:
348
+ description: Portugal
349
+ meaning: iso3166loc:pt
350
+ exact_mappings:
351
+ - GAZ:00002944
352
+ NLD:
353
+ description: Netherlands
354
+ meaning: iso3166loc:nl
355
+ exact_mappings:
356
+ - GAZ:00002946
357
+ BEL:
358
+ description: Belgium
359
+ meaning: iso3166loc:be
360
+ exact_mappings:
361
+ - GAZ:00002938
362
+ CHE:
363
+ description: Switzerland
364
+ meaning: iso3166loc:ch
365
+ exact_mappings:
366
+ - GAZ:00002941
367
+ AUT:
368
+ description: Austria
369
+ meaning: iso3166loc:at
370
+ exact_mappings:
371
+ - GAZ:00002942
372
+ SWE:
373
+ description: Sweden
374
+ meaning: iso3166loc:se
375
+ exact_mappings:
376
+ - GAZ:00002729
377
+ NOR:
378
+ description: Norway
379
+ meaning: iso3166loc:no
380
+ exact_mappings:
381
+ - GAZ:00002699
382
+ DNK:
383
+ description: Denmark
384
+ meaning: iso3166loc:dk
385
+ exact_mappings:
386
+ - GAZ:00002635
387
+ FIN:
388
+ description: Finland
389
+ meaning: iso3166loc:fi
390
+ exact_mappings:
391
+ - GAZ:00002937
392
+ POL:
393
+ description: Poland
394
+ meaning: iso3166loc:pl
395
+ exact_mappings:
396
+ - GAZ:00002939
397
+ RUS:
398
+ description: Russian Federation
399
+ meaning: iso3166loc:ru
400
+ exact_mappings:
401
+ - GAZ:00002721
402
+ UKR:
403
+ description: Ukraine
404
+ meaning: iso3166loc:ua
405
+ exact_mappings:
406
+ - GAZ:00002724
407
+ CHN:
408
+ description: China
409
+ meaning: iso3166loc:cn
410
+ exact_mappings:
411
+ - GAZ:00002845
412
+ JPN:
413
+ description: Japan
414
+ meaning: iso3166loc:jp
415
+ exact_mappings:
416
+ - GAZ:00002747
417
+ KOR:
418
+ description: South Korea
419
+ meaning: iso3166loc:kr
420
+ exact_mappings:
421
+ - GAZ:00002802
422
+ IND:
423
+ description: India
424
+ meaning: iso3166loc:in
425
+ exact_mappings:
426
+ - GAZ:00002839
427
+ AUS:
428
+ description: Australia
429
+ meaning: iso3166loc:au
430
+ exact_mappings:
431
+ - GAZ:00000463
432
+ NZL:
433
+ description: New Zealand
434
+ meaning: iso3166loc:nz
435
+ exact_mappings:
436
+ - GAZ:00000469
437
+ BRA:
438
+ description: Brazil
439
+ meaning: iso3166loc:br
440
+ exact_mappings:
441
+ - GAZ:00002828
442
+ ARG:
443
+ description: Argentina
444
+ meaning: iso3166loc:ar
445
+ exact_mappings:
446
+ - GAZ:00002928
447
+ CHL:
448
+ description: Chile
449
+ meaning: iso3166loc:cl
450
+ exact_mappings:
451
+ - GAZ:00002825
452
+ COL:
453
+ description: Colombia
454
+ meaning: iso3166loc:co
455
+ exact_mappings:
456
+ - GAZ:00002929
457
+ USStateCodeEnum:
458
+ description: United States state and territory codes
459
+ permissible_values:
460
+ AL:
461
+ description: Alabama
462
+ AK:
463
+ description: Alaska
464
+ AZ:
465
+ description: Arizona
466
+ AR:
467
+ description: Arkansas
468
+ CA:
469
+ description: California
470
+ CO:
471
+ description: Colorado
472
+ CT:
473
+ description: Connecticut
474
+ DE:
475
+ description: Delaware
476
+ FL:
477
+ description: Florida
478
+ GA:
479
+ description: Georgia
480
+ HI:
481
+ description: Hawaii
482
+ ID:
483
+ description: Idaho
484
+ IL:
485
+ description: Illinois
486
+ IN:
487
+ description: Indiana
488
+ IA:
489
+ description: Iowa
490
+ KS:
491
+ description: Kansas
492
+ KY:
493
+ description: Kentucky
494
+ LA:
495
+ description: Louisiana
496
+ ME:
497
+ description: Maine
498
+ MD:
499
+ description: Maryland
500
+ MA:
501
+ description: Massachusetts
502
+ MI:
503
+ description: Michigan
504
+ MN:
505
+ description: Minnesota
506
+ MS:
507
+ description: Mississippi
508
+ MO:
509
+ description: Missouri
510
+ MT:
511
+ description: Montana
512
+ NE:
513
+ description: Nebraska
514
+ NV:
515
+ description: Nevada
516
+ NH:
517
+ description: New Hampshire
518
+ NJ:
519
+ description: New Jersey
520
+ NM:
521
+ description: New Mexico
522
+ NY:
523
+ description: New York
524
+ NC:
525
+ description: North Carolina
526
+ ND:
527
+ description: North Dakota
528
+ OH:
529
+ description: Ohio
530
+ OK:
531
+ description: Oklahoma
532
+ OR:
533
+ description: Oregon
534
+ PA:
535
+ description: Pennsylvania
536
+ RI:
537
+ description: Rhode Island
538
+ SC:
539
+ description: South Carolina
540
+ SD:
541
+ description: South Dakota
542
+ TN:
543
+ description: Tennessee
544
+ TX:
545
+ description: Texas
546
+ UT:
547
+ description: Utah
548
+ VT:
549
+ description: Vermont
550
+ VA:
551
+ description: Virginia
552
+ WA:
553
+ description: Washington
554
+ WV:
555
+ description: West Virginia
556
+ WI:
557
+ description: Wisconsin
558
+ WY:
559
+ description: Wyoming
560
+ DC:
561
+ description: District of Columbia
562
+ PR:
563
+ description: Puerto Rico
564
+ VI:
565
+ description: U.S. Virgin Islands
566
+ GU:
567
+ description: Guam
568
+ AS:
569
+ description: American Samoa
570
+ MP:
571
+ description: Northern Mariana Islands
572
+ CanadianProvinceCodeEnum:
573
+ description: Canadian province and territory codes
574
+ permissible_values:
575
+ AB:
576
+ description: Alberta
577
+ BC:
578
+ description: British Columbia
579
+ MB:
580
+ description: Manitoba
581
+ NB:
582
+ description: New Brunswick
583
+ NL:
584
+ description: Newfoundland and Labrador
585
+ NS:
586
+ description: Nova Scotia
587
+ NT:
588
+ description: Northwest Territories
589
+ NU:
590
+ description: Nunavut
591
+ true:
592
+ description: Ontario
593
+ PE:
594
+ description: Prince Edward Island
595
+ QC:
596
+ description: Quebec
597
+ SK:
598
+ description: Saskatchewan
599
+ YT:
600
+ description: Yukon
601
+ CompassDirection:
602
+ description: Cardinal and intercardinal compass directions
603
+ permissible_values:
604
+ NORTH:
605
+ description: North (0°/360°)
606
+ annotations:
607
+ abbreviation: N
608
+ degrees: 0
609
+ EAST:
610
+ description: East (90°)
611
+ annotations:
612
+ abbreviation: E
613
+ degrees: 90
614
+ SOUTH:
615
+ description: South (180°)
616
+ annotations:
617
+ abbreviation: S
618
+ degrees: 180
619
+ WEST:
620
+ description: West (270°)
621
+ annotations:
622
+ abbreviation: W
623
+ degrees: 270
624
+ NORTHEAST:
625
+ description: Northeast (45°)
626
+ annotations:
627
+ abbreviation: NE
628
+ degrees: 45
629
+ SOUTHEAST:
630
+ description: Southeast (135°)
631
+ annotations:
632
+ abbreviation: SE
633
+ degrees: 135
634
+ SOUTHWEST:
635
+ description: Southwest (225°)
636
+ annotations:
637
+ abbreviation: SW
638
+ degrees: 225
639
+ NORTHWEST:
640
+ description: Northwest (315°)
641
+ annotations:
642
+ abbreviation: NW
643
+ degrees: 315
644
+ NORTH_NORTHEAST:
645
+ description: North-northeast (22.5°)
646
+ annotations:
647
+ abbreviation: NNE
648
+ degrees: 22.5
649
+ EAST_NORTHEAST:
650
+ description: East-northeast (67.5°)
651
+ annotations:
652
+ abbreviation: ENE
653
+ degrees: 67.5
654
+ EAST_SOUTHEAST:
655
+ description: East-southeast (112.5°)
656
+ annotations:
657
+ abbreviation: ESE
658
+ degrees: 112.5
659
+ SOUTH_SOUTHEAST:
660
+ description: South-southeast (157.5°)
661
+ annotations:
662
+ abbreviation: SSE
663
+ degrees: 157.5
664
+ SOUTH_SOUTHWEST:
665
+ description: South-southwest (202.5°)
666
+ annotations:
667
+ abbreviation: SSW
668
+ degrees: 202.5
669
+ WEST_SOUTHWEST:
670
+ description: West-southwest (247.5°)
671
+ annotations:
672
+ abbreviation: WSW
673
+ degrees: 247.5
674
+ WEST_NORTHWEST:
675
+ description: West-northwest (292.5°)
676
+ annotations:
677
+ abbreviation: WNW
678
+ degrees: 292.5
679
+ NORTH_NORTHWEST:
680
+ description: North-northwest (337.5°)
681
+ annotations:
682
+ abbreviation: NNW
683
+ degrees: 337.5
684
+ RelativeDirection:
685
+ description: Relative directional terms
686
+ permissible_values:
687
+ FORWARD:
688
+ description: Forward/Ahead
689
+ annotations:
690
+ aliases: ahead, front
691
+ BACKWARD:
692
+ description: Backward/Behind
693
+ annotations:
694
+ aliases: behind, back, rear
695
+ LEFT:
696
+ description: Left
697
+ annotations:
698
+ aliases: port (nautical)
699
+ RIGHT:
700
+ description: Right
701
+ annotations:
702
+ aliases: starboard (nautical)
703
+ UP:
704
+ description: Up/Above
705
+ annotations:
706
+ aliases: above, upward
707
+ DOWN:
708
+ description: Down/Below
709
+ annotations:
710
+ aliases: below, downward
711
+ INWARD:
712
+ description: Inward/Toward center
713
+ annotations:
714
+ aliases: toward center, centripetal
715
+ OUTWARD:
716
+ description: Outward/Away from center
717
+ annotations:
718
+ aliases: away from center, centrifugal
719
+ CLOCKWISE:
720
+ description: Clockwise rotation
721
+ annotations:
722
+ abbreviation: CW
723
+ COUNTERCLOCKWISE:
724
+ description: Counterclockwise rotation
725
+ annotations:
726
+ abbreviation: CCW
727
+ aliases: anticlockwise
728
+ WindDirection:
729
+ description: Wind direction nomenclature (named for where wind comes FROM)
730
+ permissible_values:
731
+ NORTHERLY:
732
+ description: Wind from the north
733
+ annotations:
734
+ from_direction: north
735
+ toward_direction: south
736
+ NORTHEASTERLY:
737
+ description: Wind from the northeast
738
+ annotations:
739
+ from_direction: northeast
740
+ toward_direction: southwest
741
+ EASTERLY:
742
+ description: Wind from the east
743
+ annotations:
744
+ from_direction: east
745
+ toward_direction: west
746
+ SOUTHEASTERLY:
747
+ description: Wind from the southeast
748
+ annotations:
749
+ from_direction: southeast
750
+ toward_direction: northwest
751
+ SOUTHERLY:
752
+ description: Wind from the south
753
+ annotations:
754
+ from_direction: south
755
+ toward_direction: north
756
+ SOUTHWESTERLY:
757
+ description: Wind from the southwest
758
+ annotations:
759
+ from_direction: southwest
760
+ toward_direction: northeast
761
+ WESTERLY:
762
+ description: Wind from the west
763
+ annotations:
764
+ from_direction: west
765
+ toward_direction: east
766
+ NORTHWESTERLY:
767
+ description: Wind from the northwest
768
+ annotations:
769
+ from_direction: northwest
770
+ toward_direction: southeast
771
+ VARIABLE:
772
+ description: Variable wind direction
773
+ annotations:
774
+ note: changing or inconsistent direction
775
+ ContinentEnum:
776
+ description: Continental regions
777
+ permissible_values:
778
+ AFRICA:
779
+ description: Africa
780
+ ANTARCTICA:
781
+ description: Antarctica
782
+ ASIA:
783
+ description: Asia
784
+ EUROPE:
785
+ description: Europe
786
+ NORTH_AMERICA:
787
+ description: North America
788
+ OCEANIA:
789
+ description: Oceania (including Australia)
790
+ SOUTH_AMERICA:
791
+ description: South America
792
+ UNRegionEnum:
793
+ description: United Nations regional classifications
794
+ permissible_values:
795
+ EASTERN_AFRICA:
796
+ description: Eastern Africa
797
+ MIDDLE_AFRICA:
798
+ description: Middle Africa
799
+ NORTHERN_AFRICA:
800
+ description: Northern Africa
801
+ SOUTHERN_AFRICA:
802
+ description: Southern Africa
803
+ WESTERN_AFRICA:
804
+ description: Western Africa
805
+ CARIBBEAN:
806
+ description: Caribbean
807
+ CENTRAL_AMERICA:
808
+ description: Central America
809
+ NORTHERN_AMERICA:
810
+ description: Northern America
811
+ SOUTH_AMERICA:
812
+ description: South America
813
+ CENTRAL_ASIA:
814
+ description: Central Asia
815
+ EASTERN_ASIA:
816
+ description: Eastern Asia
817
+ SOUTHERN_ASIA:
818
+ description: Southern Asia
819
+ SOUTH_EASTERN_ASIA:
820
+ description: South-Eastern Asia
821
+ WESTERN_ASIA:
822
+ description: Western Asia
823
+ EASTERN_EUROPE:
824
+ description: Eastern Europe
825
+ NORTHERN_EUROPE:
826
+ description: Northern Europe
827
+ SOUTHERN_EUROPE:
828
+ description: Southern Europe
829
+ WESTERN_EUROPE:
830
+ description: Western Europe
831
+ AUSTRALIA_NEW_ZEALAND:
832
+ description: Australia and New Zealand
833
+ MELANESIA:
834
+ description: Melanesia
835
+ MICRONESIA:
836
+ description: Micronesia
837
+ POLYNESIA:
838
+ description: Polynesia
839
+ LanguageCodeISO639_1Enum:
840
+ description: ISO 639-1 two-letter language codes
841
+ permissible_values:
842
+ EN:
843
+ description: English
844
+ ES:
845
+ description: Spanish
846
+ FR:
847
+ description: French
848
+ DE:
849
+ description: German
850
+ IT:
851
+ description: Italian
852
+ PT:
853
+ description: Portuguese
854
+ RU:
855
+ description: Russian
856
+ ZH:
857
+ description: Chinese
858
+ JA:
859
+ description: Japanese
860
+ KO:
861
+ description: Korean
862
+ AR:
863
+ description: Arabic
864
+ HI:
865
+ description: Hindi
866
+ BN:
867
+ description: Bengali
868
+ PA:
869
+ description: Punjabi
870
+ UR:
871
+ description: Urdu
872
+ NL:
873
+ description: Dutch
874
+ PL:
875
+ description: Polish
876
+ TR:
877
+ description: Turkish
878
+ VI:
879
+ description: Vietnamese
880
+ TH:
881
+ description: Thai
882
+ SV:
883
+ description: Swedish
884
+ DA:
885
+ description: Danish
886
+ false:
887
+ description: Norwegian
888
+ FI:
889
+ description: Finnish
890
+ EL:
891
+ description: Greek
892
+ HE:
893
+ description: Hebrew
894
+ CS:
895
+ description: Czech
896
+ HU:
897
+ description: Hungarian
898
+ RO:
899
+ description: Romanian
900
+ UK:
901
+ description: Ukrainian
902
+ TimeZoneEnum:
903
+ description: Common time zones
904
+ permissible_values:
905
+ UTC:
906
+ description: Coordinated Universal Time
907
+ EST:
908
+ description: Eastern Standard Time (UTC-5)
909
+ EDT:
910
+ description: Eastern Daylight Time (UTC-4)
911
+ CST:
912
+ description: Central Standard Time (UTC-6)
913
+ CDT:
914
+ description: Central Daylight Time (UTC-5)
915
+ MST:
916
+ description: Mountain Standard Time (UTC-7)
917
+ MDT:
918
+ description: Mountain Daylight Time (UTC-6)
919
+ PST:
920
+ description: Pacific Standard Time (UTC-8)
921
+ PDT:
922
+ description: Pacific Daylight Time (UTC-7)
923
+ GMT:
924
+ description: Greenwich Mean Time (UTC+0)
925
+ BST:
926
+ description: British Summer Time (UTC+1)
927
+ CET:
928
+ description: Central European Time (UTC+1)
929
+ CEST:
930
+ description: Central European Summer Time (UTC+2)
931
+ EET:
932
+ description: Eastern European Time (UTC+2)
933
+ EEST:
934
+ description: Eastern European Summer Time (UTC+3)
935
+ JST:
936
+ description: Japan Standard Time (UTC+9)
937
+ CST_CHINA:
938
+ description: China Standard Time (UTC+8)
939
+ IST:
940
+ description: India Standard Time (UTC+5:30)
941
+ AEST:
942
+ description: Australian Eastern Standard Time (UTC+10)
943
+ AEDT:
944
+ description: Australian Eastern Daylight Time (UTC+11)
945
+ NZST:
946
+ description: New Zealand Standard Time (UTC+12)
947
+ NZDT:
948
+ description: New Zealand Daylight Time (UTC+13)
949
+ CurrencyCodeISO4217Enum:
950
+ description: ISO 4217 currency codes
951
+ permissible_values:
952
+ USD:
953
+ description: United States Dollar
954
+ EUR:
955
+ description: Euro
956
+ GBP:
957
+ description: British Pound Sterling
958
+ JPY:
959
+ description: Japanese Yen
960
+ CNY:
961
+ description: Chinese Yuan Renminbi
962
+ CHF:
963
+ description: Swiss Franc
964
+ CAD:
965
+ description: Canadian Dollar
966
+ AUD:
967
+ description: Australian Dollar
968
+ NZD:
969
+ description: New Zealand Dollar
970
+ SEK:
971
+ description: Swedish Krona
972
+ NOK:
973
+ description: Norwegian Krone
974
+ DKK:
975
+ description: Danish Krone
976
+ PLN:
977
+ description: Polish Zloty
978
+ RUB:
979
+ description: Russian Ruble
980
+ INR:
981
+ description: Indian Rupee
982
+ BRL:
983
+ description: Brazilian Real
984
+ MXN:
985
+ description: Mexican Peso
986
+ ZAR:
987
+ description: South African Rand
988
+ KRW:
989
+ description: South Korean Won
990
+ SGD:
991
+ description: Singapore Dollar
992
+ HKD:
993
+ description: Hong Kong Dollar
994
+ TWD:
995
+ description: Taiwan Dollar
996
+ THB:
997
+ description: Thai Baht
998
+ MYR:
999
+ description: Malaysian Ringgit
1000
+ IDR:
1001
+ description: Indonesian Rupiah
1002
+ PHP:
1003
+ description: Philippine Peso
1004
+ VND:
1005
+ description: Vietnamese Dong
1006
+ TRY:
1007
+ description: Turkish Lira
1008
+ AED:
1009
+ description: UAE Dirham
1010
+ SAR:
1011
+ description: Saudi Riyal
1012
+ ILS:
1013
+ description: Israeli Shekel
1014
+ EGP:
1015
+ description: Egyptian Pound
1016
+ license: MIT
1017
+ see_also:
1018
+ - https://linkml.github.io/valuesets