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,248 @@
1
+ valuesets/__init__.py,sha256=LibQfgtzp8AIc-sO8drvURfdNyM7vfJsFYChvdWXBmk,192
2
+ valuesets/_version.py,sha256=VUIi62hb1nC0uXMyqXbiEQTJ2UvgSAZaU9zrw7FtQ6M,220
3
+ valuesets/datamodel/valuesets.py,sha256=FgTEGIWzrLT0kcfg7sEMz3K3-6dpY4zljgzmfL7LMAI,885984
4
+ valuesets/datamodel/valuesets_dataclass.py,sha256=Ii01s9iss3l14dQS7jexUDpaeAJSePl2Bl5hFQJrbPo,934586
5
+ valuesets/datamodel/valuesets_pydantic.py,sha256=FgTEGIWzrLT0kcfg7sEMz3K3-6dpY4zljgzmfL7LMAI,885984
6
+ valuesets/enums/__init__.py,sha256=BZKsnfM6Jkuh5pXLsHdsMGTx7ArXoJpDuirRWTaO-vU,24592
7
+ valuesets/enums/common_value_sets.py,sha256=eQ_BrvH6rZjBe51Htx0Pzua8_St2lg2P9GwWLMe7vvU,473783
8
+ valuesets/enums/confidence_levels.py,sha256=tuIL7kkQfWt7LfCvFdxGQbYNQOhPi2m3Xt9ROpfZMNU,8525
9
+ valuesets/enums/contributor.py,sha256=RDs9MrEJrp1miRKIHNccTSs-3LxQtf0zUUWuYOvqJUY,704
10
+ valuesets/enums/core.py,sha256=sVnPR7AtSePIGXHpQQWrZgDImVQ7YG6ocVeCeqRrfb0,1028
11
+ valuesets/enums/demographics.py,sha256=pKGVGbmXeR4s4QUVOpZsmGthm3rPCI7GzP6OhenGfR0,9725
12
+ valuesets/enums/ecological_interactions.py,sha256=6SodoOgvnK1XE_oaBJPzdE24PlrwA825R1oB1SaEQa0,12045
13
+ valuesets/enums/health.py,sha256=a80nPNl0-6EZrVFdX1kfyGwhcF2er4DT8s8eVA_7YUE,1064
14
+ valuesets/enums/health_base.py,sha256=a80nPNl0-6EZrVFdX1kfyGwhcF2er4DT8s8eVA_7YUE,1064
15
+ valuesets/enums/healthcare.py,sha256=wOrOrlLx2pxjWdyaNZRw2sDEgkO7cfqomK3Rf2O8pCI,3072
16
+ valuesets/enums/investigation.py,sha256=RzNOgBsbHyjiAhl9T6lrqq-mJ-7vM72Q1JQ1_2545xY,550
17
+ valuesets/enums/mining_processing.py,sha256=PsTQkxmhcSMrgKTi4BODggykSZWgh943n5iAKglrVOM,11808
18
+ valuesets/enums/statistics.py,sha256=OEDeSaUcykNi6enjMSv17XgOvte-MrMl-1nMazrKc4U,662
19
+ valuesets/enums/academic/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
20
+ valuesets/enums/academic/research.py,sha256=H1NCKZGcruoeiMmWdIvU40q9e7JCBSHxe2ltuhTL2dI,30098
21
+ valuesets/enums/analytical_chemistry/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
22
+ valuesets/enums/analytical_chemistry/mass_spectrometry.py,sha256=fr61gMU8j7Dx8MSctxq_odfeZKH0SpVDvRY5wnS0w_M,8509
23
+ valuesets/enums/bio/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
24
+ valuesets/enums/bio/biological_colors.py,sha256=xw5Rll74aicECpT37EWPNC8e9y52hK5F0EUy6pkzINM,12571
25
+ valuesets/enums/bio/cell_cycle.py,sha256=9HdHORDSrxNeGigNQlvd7609kdDtQ3XyVzQXRy-VISU,9451
26
+ valuesets/enums/bio/currency_chemicals.py,sha256=zlbZXTg4hZ-YbATvvNbBXYuji-E0mPuAs3SSGLOaU5E,2687
27
+ valuesets/enums/bio/developmental_stages.py,sha256=LoNJBtrr255Hnz7q4WNTXMKEynerB2uLDGkpGCFgrE4,8734
28
+ valuesets/enums/bio/genome_features.py,sha256=kcskpDuIyFxyiNla-nKyuMC88gawG20fM6DBrrwl30k,11994
29
+ valuesets/enums/bio/genomics.py,sha256=fGmJYY9wZZSBQ2U0TXX89E4bB3U5AVMMynJ4aMjgnJQ,4360
30
+ valuesets/enums/bio/go_aspect.py,sha256=RBCrFyLCxhK7_TVS_yUpUpyo4pZtbvkSLuauzwyqQ24,1068
31
+ valuesets/enums/bio/go_causality.py,sha256=n517Dv-cpsU78DXAonn6b6MQ2cD5dsoWljbskJZsss0,3286
32
+ valuesets/enums/bio/go_evidence.py,sha256=cgNipEleYRXFyVgv5ytuUtEvbRc-KiZpKZ6dbZe-0Z0,5705
33
+ valuesets/enums/bio/human_developmental_stages.py,sha256=sRkoI9yJ8bV4OBqlCkzHlmMJMJpcWfsbliGmxV-BHGI,3098
34
+ valuesets/enums/bio/insdc_geographic_locations.py,sha256=1TnHIytak-xWfxRz4j3T6CPDZL4AYjjRtzOvols96FA,32379
35
+ valuesets/enums/bio/insdc_missing_values.py,sha256=E3XVvX1vadDHxXu8ZcThgFRnmI3q0L3YE_3wZNbdxYg,4181
36
+ valuesets/enums/bio/lipid_categories.py,sha256=tSg4oCKYq4m6-tg1Vnihjwu-xT-LZKqTERGekjP6mmE,2387
37
+ valuesets/enums/bio/mouse_developmental_stages.py,sha256=-08-zyNL0KLj-3soEwB_ilNqPYzSR915uREh8XaW-4w,3200
38
+ valuesets/enums/bio/plant_biology.py,sha256=8ifg_spkFmhufWWBx2sa156JuiQsWRgzbeipfjLJyyg,4746
39
+ valuesets/enums/bio/plant_developmental_stages.py,sha256=X4PzwrdQ5fNne-0kWgpUiAnLP7_ddUdT3Sts7BBGUYk,3414
40
+ valuesets/enums/bio/plant_sex.py,sha256=lKjckWx9-ylPhCZcR-6bhEYhpz9c3fSa78jXuciGqbk,4147
41
+ valuesets/enums/bio/protein_evidence.py,sha256=IbStGmeOSVcQAEQ49py0XymMtGoiUEvxhSe1R53txRk,3898
42
+ valuesets/enums/bio/proteomics_standards.py,sha256=RonPy5164G03lL_rJRz03d-jJ7yRKNiUAsHOP7IT_TA,3893
43
+ valuesets/enums/bio/psi_mi.py,sha256=fPR3Kp14JIcLgAN8MogdOiSamIfU63QuTGKhzE7IpV4,15354
44
+ valuesets/enums/bio/relationship_to_oxygen.py,sha256=yR18nu4x9gybgGiB2lGygAawtrmw8TEQcrMYrdewvO8,1570
45
+ valuesets/enums/bio/sequence_alphabets.py,sha256=1SY37i6F1Nr4_NLxWsO1Gv-SAWSo8qgXDI-uGbvhkT4,23387
46
+ valuesets/enums/bio/sequence_chemistry.py,sha256=mmQR4t9g8bRRERUaX9vmcYuspUE6Y2CCaA5kfx9_qX0,13747
47
+ valuesets/enums/bio/sequencing_platforms.py,sha256=-_o-RzQJucppmfDCGDdEFGUmIiadX95qCn_sI6_Bm8Y,19265
48
+ valuesets/enums/bio/structural_biology.py,sha256=p4cvZ4wCbmSoCFtPt0nUXH1rSMxw1cteXPoF3RYE-ts,16448
49
+ valuesets/enums/bio/taxonomy.py,sha256=t5C0ktJvonGNY_zd-ilpbOANu0ksUjRmUn3o4d_eho4,12014
50
+ valuesets/enums/bio/trophic_levels.py,sha256=1Q5xafWiy0_kLlpeYvAO_YNVZVKAG8jeOUgx-KrQYlI,4899
51
+ valuesets/enums/bio/uniprot_species.py,sha256=QP4f-EedAKqwFAwiSB7uRzYf5r5Qw4jETLcFnwvVAHM,24820
52
+ valuesets/enums/bio/viral_genome_types.py,sha256=AtwV97IGoNaIOe6ibN7vBp07mMIdcoFxwciFwdmHnwc,2407
53
+ valuesets/enums/bioprocessing/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
54
+ valuesets/enums/bioprocessing/scale_up.py,sha256=w2GkaiOUP3Uyh4tqGHWThcs42O9UzgQeXMZW8cDG7Yw,14591
55
+ valuesets/enums/business/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
56
+ valuesets/enums/business/human_resources.py,sha256=IJNwtyPckekecGof23Yz7WDX3MnPCri5YhThbPHe6U0,26896
57
+ valuesets/enums/business/industry_classifications.py,sha256=Ao18TWlYLZosVgrQATVh3sWa1bhzuV2oRQF12TdAt-k,17904
58
+ valuesets/enums/business/management_operations.py,sha256=0BOqH0snghSfG216PHjez_L8egonxxm1W2FfpxKrCO8,23618
59
+ valuesets/enums/business/organizational_structures.py,sha256=takkBuoQSroOMII7hJcCG0losET2c1g92ZzeuRHnviY,26103
60
+ valuesets/enums/business/quality_management.py,sha256=H8si9GuWoHbSt8Y7JjsPnw3ZKM4cKE5XEzLMQZXQvUo,18389
61
+ valuesets/enums/business/supply_chain.py,sha256=HxNdT_nuGCWhzOvG3q-FdUbsQX60akQhOUXB12al5CE,26094
62
+ valuesets/enums/chemistry/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
63
+ valuesets/enums/chemistry/chemical_entities.py,sha256=W49XWbHM6AZ-QCemonoD0K9HiZ5zZca9MODgH2JoKDY,18394
64
+ valuesets/enums/chemistry/reaction_directionality.py,sha256=Kw73fW6dJm2__M2RIR5VQrhN6JaRL94KmkcOhLF8Skg,2430
65
+ valuesets/enums/chemistry/reactions.py,sha256=30tpizcILl6G15snvs9FuyiA4OJFH2s_mIjAd8TX8PY,14585
66
+ valuesets/enums/clinical/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
67
+ valuesets/enums/clinical/nih_demographics.py,sha256=MG_kI30Pf22_UuE8JzhrMuxKMv92C9DVKFKUTW1TQ5k,9898
68
+ valuesets/enums/clinical/phenopackets.py,sha256=YBN9mjFQWi-4Vuf51ig1A47RT7FKK1CAOgOnTpYoIAY,13778
69
+ valuesets/enums/computing/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
70
+ valuesets/enums/computing/file_formats.py,sha256=QFSu47no2nD_N0joPbHXInXfnjMCVrVBPY-8K0kXfUk,17873
71
+ valuesets/enums/computing/maturity_levels.py,sha256=QFWiRfGZvzEqDf42BKV0abhmO9Kka3tyTyE-IYG_I8E,7768
72
+ valuesets/enums/computing/mime_types.py,sha256=bI_L0PRkMv3ledFKw0pBijxeREUy_48fYblajtEurE8,10808
73
+ valuesets/enums/data/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
74
+ valuesets/enums/data/data_absent_reason.py,sha256=KZQAzO-teMdHDKjdENcesVwepM-7Vlhtl4AsFJJHNAE,3410
75
+ valuesets/enums/data_science/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
76
+ valuesets/enums/data_science/binary_classification.py,sha256=ghxMM6hY6-gd21AKHHfhv_IZSZhR4y3_2W7v7W890VE,3129
77
+ valuesets/enums/data_science/emotion_classification.py,sha256=I6-5yDfLfeJpEucS0CUHr6SNtLSXzIir012CegbQ7Pc,2800
78
+ valuesets/enums/data_science/priority_severity.py,sha256=MObCc3oTY_ud2_r31DZGKMfEtxNpY2fh6CFARfmEyBQ,2593
79
+ valuesets/enums/data_science/quality_control.py,sha256=Y-q9YCt7LwztJNZ4uApWjWE7jNXWY2_tABWrHzVQd_Y,1589
80
+ valuesets/enums/data_science/sentiment_analysis.py,sha256=MXon_MieDySqcA-A6vJXRAE59wvtD8e58_nwLQLKz48,1890
81
+ valuesets/enums/data_science/text_classification.py,sha256=bYdoiEi35mu2TTFxlyKTo5cCfyX6Y3cYrozF13CO2Fo,3557
82
+ valuesets/enums/energy/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
83
+ valuesets/enums/energy/energy.py,sha256=a_RIb7VkRMYNdcj6DOOgUf9TavNciL0C1mNh_eQLRUY,16916
84
+ valuesets/enums/energy/fossil_fuels.py,sha256=pR8MqknzVoiMjW_58hP_07KIzNfwk4Jambs-9Uk70YY,712
85
+ valuesets/enums/energy/nuclear/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
86
+ valuesets/enums/energy/nuclear/nuclear_facilities.py,sha256=gt4xRDOqwO7xMEz6y1f_YGYc6mkX_fOoJ2RkCRiV4Y4,18606
87
+ valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py,sha256=6J7SBImuxRv3Iye8Jz-G6dwZY-xwgcK5xwdnOKkgvGk,3926
88
+ valuesets/enums/energy/nuclear/nuclear_fuels.py,sha256=lfCWERDDXVGJ5es9J1NOiFq8G5IGfBVadSEPGSE5564,12868
89
+ valuesets/enums/energy/nuclear/nuclear_operations.py,sha256=RZgVKqc5h0bcUTzYcSfNiYw6QmmZnrhSt0wM272r08M,18965
90
+ valuesets/enums/energy/nuclear/nuclear_regulatory.py,sha256=X3pYoAsUzNombsJRT9ysl-XaWcmQphqSxPGoM5EdKio,8565
91
+ valuesets/enums/energy/nuclear/nuclear_safety.py,sha256=1gt8E_C2xFy03UkoKTaqzhO3YGMTW2DhPQKI4moiGTo,13837
92
+ valuesets/enums/energy/nuclear/nuclear_waste.py,sha256=sWZpJ_oQLfOAMcmmHb9vboQAVvbdvoRy5mcW08g8Nm8,12798
93
+ valuesets/enums/energy/nuclear/reactor_types.py,sha256=wbAzpfi2isB4rnYqgaGB7HeL7I-SlBQbKURciUUcyfM,11479
94
+ valuesets/enums/environmental_health/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
95
+ valuesets/enums/environmental_health/exposures.py,sha256=zWVh9ewT6qWZqY6IklDQpCqEE2Og17xZoZgeXTzvNMo,11170
96
+ valuesets/enums/geography/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
97
+ valuesets/enums/geography/geographic_codes.py,sha256=R-Y9B3yfM6D2go18WcaTCzbE_aKiPmGzM0rlojZ5Uuc,26169
98
+ valuesets/enums/health/__init__.py,sha256=T38fxLm5XG9mQRpPboz5CfjtKlOdowfRMomPl0Wq63E,349
99
+ valuesets/enums/health/vaccination.py,sha256=HUsZXK4aY7mNKLUMfwD_Qkz9lH4n9OkaItsfCc2SnMI,4644
100
+ valuesets/enums/industry/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
101
+ valuesets/enums/industry/extractive_industry.py,sha256=2ifb3u4fYqsKgPQ8hxcpdrJkHDEyHZKlDMH0f8uwQnU,3144
102
+ valuesets/enums/industry/mining.py,sha256=PLRMigr2qUWhSUEH4W6o-1RgDOS-_BI74O_t6oy9ldA,26900
103
+ valuesets/enums/industry/safety_colors.py,sha256=dhwxBHQJJ7lOA_1U7f--NfvOwt9buLBsm41MzqeaW9o,12822
104
+ valuesets/enums/materials_science/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
105
+ valuesets/enums/materials_science/characterization_methods.py,sha256=kN_Z8h03g-qaqRJzgP2Fe6oHowla-V7wECntZBAj4Bg,4976
106
+ valuesets/enums/materials_science/crystal_structures.py,sha256=udefeY6RwsYhK_lqHV9svFr4bGpgQCAfw6lFI_Led3w,4125
107
+ valuesets/enums/materials_science/material_properties.py,sha256=nk7fyguKSUm28VZJHEgagkroDWzac2b0VM-lt6snV7Q,4806
108
+ valuesets/enums/materials_science/material_types.py,sha256=Fs-VksMF8dBph6PW9KrhlepdDD-nzWYFm-YYiX47NKQ,4575
109
+ valuesets/enums/materials_science/pigments_dyes.py,sha256=UEuRNOkpPJU14iSt8W2zOxWc_iB1Y6NYz7WPDV25V5o,14000
110
+ valuesets/enums/materials_science/synthesis_methods.py,sha256=fvY8PVn2ll3MbSlc_YE6AZs8m8akcQ69eA6SwGYPisA,5121
111
+ valuesets/enums/medical/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
112
+ valuesets/enums/medical/clinical.py,sha256=8IIPWt2t6-9KPJt8CCCiaDF4hzUUPzVodf9--p-g3gA,14825
113
+ valuesets/enums/medical/neuroimaging.py,sha256=pfBnXEQ9AogMAixDvXgqsO_LM_3QnNC4xQkgQmNlCh0,10664
114
+ valuesets/enums/physics/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
115
+ valuesets/enums/physics/states_of_matter.py,sha256=wznXdWtIEKdXObdvS4vfDaCwppyt5WWpasytimUwDWI,2014
116
+ valuesets/enums/social/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
117
+ valuesets/enums/social/person_status.py,sha256=x7RW2YnZz9h9UUXd41GQz6qPok_SAmCNjK5tKWLz29g,723
118
+ valuesets/enums/spatial/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
119
+ valuesets/enums/spatial/spatial_qualifiers.py,sha256=0Rp2xqHPbtjyIRqlK4D82anGP3nW11OMt6j2xnZQDtI,12530
120
+ valuesets/enums/statistics/__init__.py,sha256=2wZlZODMsFw2jYcePa89lo2KDL3s8kKGEvPRSEvInmM,142
121
+ valuesets/enums/statistics/prediction_outcomes.py,sha256=VBHnuRrkdPhDLr0mymS9eT9gqrUJE2wSHthLrgU9PF8,656
122
+ valuesets/enums/time/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
123
+ valuesets/enums/time/temporal.py,sha256=-NQz6claz3xDfMEelzVwHpV4hRqCr7dw3rtGLYy6y98,11187
124
+ valuesets/enums/units/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
125
+ valuesets/enums/units/measurements.py,sha256=QzpxoAkADw59AkB8aQj5p9_ZzsbjLi-NnyrlGoySiUQ,18175
126
+ valuesets/enums/visual/__init__.py,sha256=CYvwgjMaIwdxHvOrnsFELO7isUvjqFO5xpb2b2w_QrM,30
127
+ valuesets/enums/visual/colors.py,sha256=sAdFlH9atA9hQbRXcHzX_U2hhNcyTOCp5otv-PnHVDs,22196
128
+ valuesets/generators/__init__.py,sha256=qKowGiuLxxHEAoS30QCCsahWgQqgZuzxRWydMEKM6hc,492
129
+ valuesets/generators/auto_slot_injector.py,sha256=TZJZcfos-OcREBcGpijokRoQvQnn4jpw8DU0Tr29PUE,10391
130
+ valuesets/generators/enhanced_pydantic_generator.py,sha256=BOOpjkxSwkX_BzZzSwej34LXRlFt8VEuFLWVbpT8HC8,3909
131
+ valuesets/generators/enum_slot_generator.py,sha256=jIbhkK7avgytzsvV71lT0iWCDwG_tRVWN85_W_j_oDM,6849
132
+ valuesets/generators/modular_rich_generator.py,sha256=Mqr_UBogt4Wbk1nK-g4UpvE59eLo4NQwiZA8rbT1PKo,13423
133
+ valuesets/generators/prefix_standardizer.py,sha256=x4WeXSZ-_Pc14VKSvZaYbU3OeXuBYfgEIZ8Q3SjMwcg,6786
134
+ valuesets/generators/rich_enum.py,sha256=_W2Ily9HUdrWOSp8pqV-B8BzqxPpwF5UIaG_XZTwYDo,4750
135
+ valuesets/generators/rich_pydantic_generator.py,sha256=fYhuGGfCex4lIQCIrsefDQVo98ZiplvK3yzMfD38wYs,11106
136
+ valuesets/generators/smart_slot_syncer.py,sha256=fVBS13QltRFP2CT96MrbCUgnlgTskjxjbNBgEOi22FM,17157
137
+ valuesets/generators/sssom_generator.py,sha256=7OjYiB2pqs3Qo2OU5CJtq4N5q5lOHc8Wjp5oww6AntQ,13662
138
+ valuesets/merged/merged_hierarchy.yaml,sha256=en3SHEoafjviZ8ZFO2e8RipIDqHssyLN4eHvPOA8GIM,661793
139
+ valuesets/schema/README.md,sha256=Q1LqBSSyK4g9LHoH3JDpD6o-J8u0nLbqij-lhwMxbdg,71
140
+ valuesets/schema/confidence_levels.yaml,sha256=TTgLUKj2BYWM4GXVHoPYS8ckhal4iKk3wqkBjfil8Cs,8169
141
+ valuesets/schema/contributor.yaml,sha256=QlEo3C9633RIQwrrQiH2HOiMQ6GmfGVfxL7shuyUv4w,866
142
+ valuesets/schema/core.yaml,sha256=BOZf5RYR9mHm0OVv-n5s1Q0ZqHTy0Ku6abHQSBO72xk,1770
143
+ valuesets/schema/demographics.yaml,sha256=h0wMbV7DJfdK6vqr8pZxAv3eKjdlrcpB8JxEi8LLank,9020
144
+ valuesets/schema/ecological_interactions.yaml,sha256=xTO9l9emOB_jsnxzjHEfPjhOtJpsDgB4JYl3Id_SlK8,11814
145
+ valuesets/schema/generated_slots.yaml,sha256=HLGcbxpXcKCdiEm2AqvyFDIQCkyU5FuTCNOM9at8tUg,62299
146
+ valuesets/schema/health.yaml,sha256=rfEby9hk6BxxYCaznS8t_MzatylgMElFyUsYTamUu_o,1216
147
+ valuesets/schema/healthcare.yaml,sha256=16K_1rKMRnRWf70wrBCbowkilTcY2bSnzvItvU0TBQE,2964
148
+ valuesets/schema/investigation.yaml,sha256=TyDYUjf3C8bXNodXU0EyyKx13vZS1hcij_oWBAcZADs,1925
149
+ valuesets/schema/mining_processing.yaml,sha256=KRekjgSLYsmn4rkjQEBzoISLz-d4v0eE6PJgC-HVFcE,10646
150
+ valuesets/schema/slot_mixins.yaml,sha256=0x-D2PN8-ALTv-6hQ43zhdt3ewMiT7EUamHjhJSx3CU,4144
151
+ valuesets/schema/statistics.yaml,sha256=SmjB6wFeSizSlrKdQIIOYjcx6FLKEjujav_Q0cst1WY,980
152
+ valuesets/schema/types.yaml,sha256=bGCblMuCknba_-W5zR-rzyZW7RiJXDWNGfrToK9Be4w,380
153
+ valuesets/schema/valuesets.yaml,sha256=v-_NgI2VtZ4Llb0JrLh4x-PERu7WBGvBjxT3CjiNYUI,2562
154
+ valuesets/schema/academic/research.yaml,sha256=5NBnBPj7xGoTcEd9w8zHCZtz1h4pzLepIrLkf-iuSgE,27516
155
+ valuesets/schema/analytical_chemistry/mass_spectrometry.yaml,sha256=C1_962jLxELM4VNgArFoLLqZucIlPsLYaSaCr3bPY00,6927
156
+ valuesets/schema/bio/bio_entities.yaml,sha256=8idzwOHsIvw0y7UrML8m5AdeV7q-04g14WDjiAyfJ5c,10735
157
+ valuesets/schema/bio/biological_colors.yaml,sha256=xgzd9PHFmKlCHtyzpK4wUexINRJoyVzOUXG9XOXpGas,12257
158
+ valuesets/schema/bio/cell_cycle.yaml,sha256=1_D1ctdcxvalUYqFJ36kwnJAE4SsejOHWIKFyuDHt5k,10195
159
+ valuesets/schema/bio/currency_chemicals.yaml,sha256=EZQAFm9obCSgqpO1nvgnsG6GmpIsRbPIJxQHStVW_C0,2890
160
+ valuesets/schema/bio/developmental_stages.yaml,sha256=7nInPI2-pm5kJqCJho_4qg2izdumE-s-lwzJMRDO7yc,10182
161
+ valuesets/schema/bio/genome_features.yaml,sha256=V5TYvcDlQ5cMxIKFyrBQrJZ6eXXdAVESjsQZ2AECqLY,12382
162
+ valuesets/schema/bio/genomics.yaml,sha256=oZkjfDnYPv9EJkMjFevNHgp5QGLq0FSigXEqQv6Fj2Y,4602
163
+ valuesets/schema/bio/go_aspect.yaml,sha256=CujoBkig0V9VEm4Oxt91EvVbKX1Br05y-cjaRrDS4Us,1319
164
+ valuesets/schema/bio/go_causality.yaml,sha256=yLD_oVvRHU0R38DyZpoinEyFnVqoHMjXDuVoVxT0LxI,4007
165
+ valuesets/schema/bio/go_evidence.yaml,sha256=jFbeceo3mjNnHtcBFEIrbfhC_QKMgYCYPE3Fo5RieoY,7910
166
+ valuesets/schema/bio/insdc_geographic_locations.yaml,sha256=6-a0qFqTOpTy6G3HTNljrU-oOsYmXc0dH1ux7g1obRI,25669
167
+ valuesets/schema/bio/insdc_missing_values.yaml,sha256=p_fejsGuaCtZCvr4XE5ZwXgLe_0GlOU94tNy1A28YYQ,4206
168
+ valuesets/schema/bio/lipid_categories.yaml,sha256=aEIte0R20ABadKgGPvv3pu1wa0aBtyl_rTC0UZqdd_Q,1986
169
+ valuesets/schema/bio/plant_biology.yaml,sha256=SQtxt8YxrJVm__doge2ZEVdkm1fOznrPyNociN3i64A,4987
170
+ valuesets/schema/bio/plant_developmental_stages.yaml,sha256=hKWWuGZAQoCwJjpjHY-76JEfAuTupVZM5jpyqNqtF-I,3100
171
+ valuesets/schema/bio/plant_sex.yaml,sha256=1JhxrEtWkgcWHJ01J-mTKYs7s4QF2OQh_-YxL4WT52Q,4246
172
+ valuesets/schema/bio/protein_evidence.yaml,sha256=MUz7vbhZDjHN5BT2bDov7vUSdd3BrjjDl6ro_q_UY-w,3663
173
+ valuesets/schema/bio/proteomics_standards.yaml,sha256=_kYrBUpWYPLquEhcDTEwNK2JrHxhirzsu92kR2PpTxU,3686
174
+ valuesets/schema/bio/psi_mi.yaml,sha256=bP0yHff8hBOt01XylyeiQzzMKxzWTlhMd7O-aFm7GD8,13012
175
+ valuesets/schema/bio/relationship_to_oxygen.yaml,sha256=ky1NfvkA26sMXP4H7akPp_7Z5jww0f4OI1U-TSFVr9E,1771
176
+ valuesets/schema/bio/sequence_alphabets.yaml,sha256=meGfCvHZXb6Wx489Nh3o9nj4umuT5v3APphjBpvVYTI,29155
177
+ valuesets/schema/bio/sequence_chemistry.yaml,sha256=ov7K15Oq2ZUDbNihWVbLyPFL7ZZOwFBufYLDOXC5sZA,13856
178
+ valuesets/schema/bio/sequencing_platforms.yaml,sha256=5qWK0W284J1WOUrU4mYfaMfCPyLgyCpHuS1SezeTj_E,17482
179
+ valuesets/schema/bio/structural_biology.yaml,sha256=VwAxy13jKzA1ljBK2sEVr8WdMxA-nlZUtXYWdj8h15Q,14898
180
+ valuesets/schema/bio/taxonomy.yaml,sha256=x_ORJebzylBn0b7wsPT4cFqB6iUHWVIUJJQlkRfvmnM,13920
181
+ valuesets/schema/bio/trophic_levels.yaml,sha256=4Iez0FPDg15_3ZS9fm80ZyTnoYmvdVjin8Sk5e_gKRc,4913
182
+ valuesets/schema/bio/uniprot_species.yaml,sha256=_n6xUJwfIulNFTKJmjGCTOvfoTfnG1ieXzdSA4vv4c0,43004
183
+ valuesets/schema/bio/viral_genome_types.yaml,sha256=reGz1CLkHNK-sv9xwbbixzm-v1j10GRd0tjKYZGvtOk,3144
184
+ valuesets/schema/bioprocessing/scale_up.yaml,sha256=jUZH_LYrPSkrPnirYtb8O_nbAiLFw3yBlvFW77Wwmwk,14778
185
+ valuesets/schema/business/human_resources.yaml,sha256=I_L3uLpezqZGD60fHx7LVF7QdYswNDndTpXeUkRvA_M,29790
186
+ valuesets/schema/business/industry_classifications.yaml,sha256=PexXUVaa7zO-8AQGL0c2rgyMTEUlQMAOPFALEAZLeOU,19934
187
+ valuesets/schema/business/management_operations.yaml,sha256=dRgQOyOZeaC5PEQGG07_llTk6YrtB26U_ex5cnvIbGg,25504
188
+ valuesets/schema/business/organizational_structures.yaml,sha256=ym1mveBxnUSfb4rmstAMU_8_6TjzmJRs_oqbgLN7v6A,27637
189
+ valuesets/schema/business/quality_management.yaml,sha256=7Eb9FwVYgpLoCM8wKUqWjtquqeb-zEUuyPOMmPoigdo,20898
190
+ valuesets/schema/business/supply_chain.yaml,sha256=Z3D-_Hm2goZs8qY2Kg8ijt05I1JQs7KsUW7zZuWrNjQ,28425
191
+ valuesets/schema/chemistry/chemical_entities.yaml,sha256=j58flbtJ1P44j6Jk9-7m3MRul3qnpiId9iRnzy-F5qs,18858
192
+ valuesets/schema/chemistry/reaction_directionality.yaml,sha256=Q6FBXoD8VZUg06H8X3DHqtzKvSSlhj6OWmU10jKGsmY,1799
193
+ valuesets/schema/chemistry/reactions.yaml,sha256=yIO-YIjswo4OzTcqZKYV6CKD1NdYcAxTxrUYe2la73E,13889
194
+ valuesets/schema/clinical/nih_demographics.yaml,sha256=HQOxTms0Q10zjFQ8pMyxjGRoJ44Xiec_rH2ImzgkRgU,10327
195
+ valuesets/schema/clinical/phenopackets.yaml,sha256=W96vuHGrC-6M7G8vU1psOA9_M1cbsnIMRhQ9KlI0I3I,14263
196
+ valuesets/schema/computing/file_formats.yaml,sha256=r5hAgeHXt-VxxM-ru3PcPux0B2ReodVSJRclBK1ezao,18118
197
+ valuesets/schema/computing/maturity_levels.yaml,sha256=JzoPTDE-kVtred-k32fpQ4_ZLjS2X-_wJ2L7q1lDyMU,8930
198
+ valuesets/schema/computing/mime_types.yaml,sha256=rkhY9RFQCnmYs20tC8o61gYJvkzy4HNR7ti-ddWp5lk,8376
199
+ valuesets/schema/data/data_absent_reason.yaml,sha256=Ic8iOJNwNTFXWiFOEISc-qb6ZAmXejBzqqmPE7e0svQ,3704
200
+ valuesets/schema/data_science/binary_classification.yaml,sha256=kJWEl_Uhz58QbJsWCMcBtxOCIwfr6A0o6qYMQ2EL2x8,3616
201
+ valuesets/schema/data_science/emotion_classification.yaml,sha256=Itd5-BxIhN9frQSjfEUK5zGI7N5VRPtOa0cvNeP1pW4,3219
202
+ valuesets/schema/data_science/priority_severity.yaml,sha256=ctg87dZB3wCsbscLNBTuTOTHj8Mdq0FjgutqcyU4hG8,3096
203
+ valuesets/schema/data_science/quality_control.yaml,sha256=lJgH5oEC0dZdcQzreTc9r7ct42jbHv0_zlBSV1kWKsk,1819
204
+ valuesets/schema/data_science/sentiment_analysis.yaml,sha256=5YiSZZOecnQX6EHpLpcAvljtTdkAmhmHaJaip21HK_8,2282
205
+ valuesets/schema/data_science/text_classification.yaml,sha256=WEUumaxV_3e2Jyd-F2FbGUzmSKJz7yzSEKYBZlE2l8Y,3887
206
+ valuesets/schema/energy/energy.yaml,sha256=KDvCl8Kut2d6IBVEwYj7bZuGlJghphDMji6dezE_GO8,16100
207
+ valuesets/schema/energy/fossil_fuels.yaml,sha256=UCWh1LwWUTY6U3FQZrHJM8vkbmdEdEydE0S0uD6c6xw,842
208
+ valuesets/schema/energy/nuclear/nuclear_facilities.yaml,sha256=IKWUbTH8u_EcBnCNirLhz80QR9_rsL-xrncdtdbooRs,19349
209
+ valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml,sha256=8fimt6Tx2dnUDXhtHo99PcUxeSYrA2NSysTtlDiF6JQ,3054
210
+ valuesets/schema/energy/nuclear/nuclear_fuels.yaml,sha256=DHQym9fVMu1V4MkyK6bGSFoPaFrfVicaxYRa3E7X318,14141
211
+ valuesets/schema/energy/nuclear/nuclear_operations.yaml,sha256=A91hchNo7vQj9W2qpTEPUV_6eJBilRIopOXdzskOGgE,19798
212
+ valuesets/schema/energy/nuclear/nuclear_regulatory.yaml,sha256=YdVoNb0FxD6Te0ukNvLTNjGUdLHxCuNAyBcNRbq-sj4,8280
213
+ valuesets/schema/energy/nuclear/nuclear_safety.yaml,sha256=Uy3ziIAA6mkGXMgBctI9RRvETM76B4A4-8NOH9a1HsM,15161
214
+ valuesets/schema/energy/nuclear/nuclear_waste.yaml,sha256=gXP66UnUSBcoZxIy4aXWzEc27Qkq3FXeXKaBteQp2r0,13654
215
+ valuesets/schema/energy/nuclear/reactor_types.yaml,sha256=UutxM_bObOSlmcXE_4V_GA7HNALoc4Z4gfUV3QndMJs,13112
216
+ valuesets/schema/environmental_health/exposures.yaml,sha256=82Z2F-d2_6eRbi5R6ZbSnl-GmzzvZDKFJTWiOF27cXw,11484
217
+ valuesets/schema/geography/geographic_codes.yaml,sha256=yv4Twp8k3PMxotPF5ksirsw8MSzWpbSo13CazJJDCMs,25654
218
+ valuesets/schema/health/vaccination.yaml,sha256=2R10gQvMS2H1n5qGjbrHd7WxUbMHwDY9z3f3UYnZjXs,4203
219
+ valuesets/schema/industry/extractive_industry.yaml,sha256=yCnOSdbwxjYUT1SNOmQyKxwOapXvc41_IEiPVMpNWEU,3210
220
+ valuesets/schema/industry/mining.yaml,sha256=NWEhDpQgSCoEF0ZH1RBJg5HB22erV_2Pc0xiblDFkoQ,27201
221
+ valuesets/schema/industry/safety_colors.yaml,sha256=r6eFMgbGIPLLGrrW6b0_VyoUXvUIRB2mSKRxVmnxWZ8,12174
222
+ valuesets/schema/materials_science/characterization_methods.yaml,sha256=ICYTYDLTh1rDYXBcyoNf8GX8JyXptM9akMx8I79zrqE,5874
223
+ valuesets/schema/materials_science/crystal_structures.yaml,sha256=OAM7MDkbj-bmckiFDYl5EwMqw9UtAcTdArE5CDEim0o,4559
224
+ valuesets/schema/materials_science/material_properties.yaml,sha256=xLWiPtFY4TW4OXxj_8JFtqu5CvK1G1iJzOZWQgeOjU8,4930
225
+ valuesets/schema/materials_science/material_types.yaml,sha256=zWwQKPYJGCXxrLqIpv8GvQRRou7ECTpSZokZB76YS7s,4918
226
+ valuesets/schema/materials_science/pigments_dyes.yaml,sha256=x__uehNl3jMF3XZ-fugldHLuF1UtNF7GR3rQ_12sv5k,13428
227
+ valuesets/schema/materials_science/synthesis_methods.yaml,sha256=RYfuKnamzE-Ygsg74BMpa4RUUJit9mCbq9Mbvogh2d8,5597
228
+ valuesets/schema/medical/clinical.yaml,sha256=hw9EWB3pMO9JUtCglHgaVe_h2PGexZqtth4xi2rYt_U,17638
229
+ valuesets/schema/medical/neuroimaging.yaml,sha256=uoZYTE9MvEsq-k8m12NmTeb0iNI0cCdJ08Paso8IIOc,12229
230
+ valuesets/schema/physics/states_of_matter.yaml,sha256=ZBLCyxK6Pn_GQAzLRzlYYGElCUdt5NLTB-A3FK-f42U,1926
231
+ valuesets/schema/social/person_status.yaml,sha256=nYJxtndMxv_HSK-az9rMtYZdXvdElW8AS24GhxHUb9c,856
232
+ valuesets/schema/spatial/spatial_qualifiers.yaml,sha256=u9uYWSHjRJMUMvomhv1IqUfr8XYSJLFc8fT4n-KmMFQ,14139
233
+ valuesets/schema/statistics/prediction_outcomes.yaml,sha256=o9PrEcWQpLRNnhYSSJSzkTyrFNbRB9iU3gHLXDaduvU,765
234
+ valuesets/schema/time/temporal.yaml,sha256=LuP3Q9u1D-t5OmFr9J5eVy06HELgriHZL3DmaEEesao,11741
235
+ valuesets/schema/units/measurements.yaml,sha256=VRryERgTA1y-YeXkC__EQXSluf2Ac6iT1qu42cJmk4c,18639
236
+ valuesets/schema/visual/colors.yaml,sha256=5OKduYGo8Ib4jNreZjTbWAmuyQpzXZAJo6VAy_JTsKk,19847
237
+ valuesets/utils/__init__.py,sha256=0Zd9QJ-MPHdtfPBhythEklJI4GlpqTsvsR182bx70lY,200
238
+ valuesets/utils/comparison.py,sha256=pbq1BQ_NJ46AVQ8BoDGF56YKBpoH4ZjOpYl79264jLw,3547
239
+ valuesets/utils/expand_dynamic_enums.py,sha256=BN6jr5lR69cjqeTeVBbk6AufIaCCt87MYmfIyQ53TwU,16404
240
+ valuesets/utils/mapping_utils.py,sha256=x451DjTHs8rfe8ghT-21eI6vwfFNM40X6MSGDx1tvMw,7591
241
+ valuesets/validators/__init__.py,sha256=nM19aMguNIRssZS81jNebESk021BYO___rh2yLgKFAo,203
242
+ valuesets/validators/enum_evaluator.py,sha256=wW7xCxtFQ_llu6dkgRrZqZgpf6HRZjqS5bMVPUkvLJE,26960
243
+ valuesets/validators/oak_config.yaml,sha256=tDHMI7eqW5KA0SpAC2NEmlRv4molTirojppAmF-p9WU,1389
244
+ valuesets/validators/validate_with_ols.py,sha256=xgL7b2NiQV7LiUwyotWhmexAtPmLG7rso60Nmo6Q668,7600
245
+ valuesets-0.3.1.dist-info/METADATA,sha256=4kM25EYtUvHHtxf1P4EbUlQG8HfTrctl25gw8PGQx9s,13344
246
+ valuesets-0.3.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
247
+ valuesets-0.3.1.dist-info/licenses/LICENSE,sha256=_wATt15Xamn2Yrza20RI6EGFzj_Vy-6OG9OKt-DVUW8,11343
248
+ valuesets-0.3.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 Chris Mungall
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.