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,198 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Pigments and Dyes Color Value Sets
|
|
3
|
+
|
|
4
|
+
Color value sets for pigments, dyes, paints, and other colorant materials used in art, industry, and manufacturing.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Generated from: materials_science/pigments_dyes.yaml
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from __future__ import annotations
|
|
11
|
+
|
|
12
|
+
from typing import Dict, Any, Optional
|
|
13
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
14
|
+
|
|
15
|
+
class TraditionalPigmentEnum(RichEnum):
|
|
16
|
+
"""
|
|
17
|
+
Traditional artist pigments and their colors
|
|
18
|
+
"""
|
|
19
|
+
# Enum members
|
|
20
|
+
TITANIUM_WHITE = "TITANIUM_WHITE"
|
|
21
|
+
ZINC_WHITE = "ZINC_WHITE"
|
|
22
|
+
LEAD_WHITE = "LEAD_WHITE"
|
|
23
|
+
CADMIUM_YELLOW = "CADMIUM_YELLOW"
|
|
24
|
+
CHROME_YELLOW = "CHROME_YELLOW"
|
|
25
|
+
NAPLES_YELLOW = "NAPLES_YELLOW"
|
|
26
|
+
YELLOW_OCHRE = "YELLOW_OCHRE"
|
|
27
|
+
CADMIUM_ORANGE = "CADMIUM_ORANGE"
|
|
28
|
+
CADMIUM_RED = "CADMIUM_RED"
|
|
29
|
+
VERMILION = "VERMILION"
|
|
30
|
+
ALIZARIN_CRIMSON = "ALIZARIN_CRIMSON"
|
|
31
|
+
CARMINE = "CARMINE"
|
|
32
|
+
BURNT_SIENNA = "BURNT_SIENNA"
|
|
33
|
+
RAW_SIENNA = "RAW_SIENNA"
|
|
34
|
+
BURNT_UMBER = "BURNT_UMBER"
|
|
35
|
+
RAW_UMBER = "RAW_UMBER"
|
|
36
|
+
VAN_DYKE_BROWN = "VAN_DYKE_BROWN"
|
|
37
|
+
PRUSSIAN_BLUE = "PRUSSIAN_BLUE"
|
|
38
|
+
ULTRAMARINE = "ULTRAMARINE"
|
|
39
|
+
COBALT_BLUE = "COBALT_BLUE"
|
|
40
|
+
CERULEAN_BLUE = "CERULEAN_BLUE"
|
|
41
|
+
PHTHALO_BLUE = "PHTHALO_BLUE"
|
|
42
|
+
VIRIDIAN = "VIRIDIAN"
|
|
43
|
+
CHROME_GREEN = "CHROME_GREEN"
|
|
44
|
+
PHTHALO_GREEN = "PHTHALO_GREEN"
|
|
45
|
+
TERRE_VERTE = "TERRE_VERTE"
|
|
46
|
+
TYRIAN_PURPLE = "TYRIAN_PURPLE"
|
|
47
|
+
MANGANESE_VIOLET = "MANGANESE_VIOLET"
|
|
48
|
+
MARS_BLACK = "MARS_BLACK"
|
|
49
|
+
IVORY_BLACK = "IVORY_BLACK"
|
|
50
|
+
LAMP_BLACK = "LAMP_BLACK"
|
|
51
|
+
|
|
52
|
+
# Set metadata after class creation
|
|
53
|
+
TraditionalPigmentEnum._metadata = {
|
|
54
|
+
"TITANIUM_WHITE": {'description': 'Titanium white (Titanium dioxide)', 'meaning': 'CHEBI:51050', 'annotations': {'hex': 'FFFFFF', 'chemical': 'TiO2', 'discovered': '1916'}},
|
|
55
|
+
"ZINC_WHITE": {'description': 'Zinc white (Zinc oxide)', 'meaning': 'CHEBI:36560', 'annotations': {'hex': 'FEFEFE', 'chemical': 'ZnO'}},
|
|
56
|
+
"LEAD_WHITE": {'description': 'Lead white (Basic lead carbonate) - toxic', 'annotations': {'hex': 'F8F8F8', 'chemical': '2PbCO3·Pb(OH)2', 'warning': 'highly toxic, historical use'}},
|
|
57
|
+
"CADMIUM_YELLOW": {'description': 'Cadmium yellow (Cadmium sulfide)', 'meaning': 'CHEBI:50834', 'annotations': {'hex': 'FFF600', 'chemical': 'CdS', 'warning': 'toxic'}},
|
|
58
|
+
"CHROME_YELLOW": {'description': 'Chrome yellow (Lead chromate) - toxic', 'annotations': {'hex': 'FFC200', 'chemical': 'PbCrO4', 'warning': 'highly toxic'}},
|
|
59
|
+
"NAPLES_YELLOW": {'description': 'Naples yellow (Lead antimonate)', 'annotations': {'hex': 'FDD5B1', 'chemical': 'Pb(SbO3)2', 'historical': 'ancient pigment'}},
|
|
60
|
+
"YELLOW_OCHRE": {'description': 'Yellow ochre (Iron oxide hydroxide)', 'annotations': {'hex': 'CC7722', 'chemical': 'FeO(OH)·nH2O', 'natural': 'earth pigment'}},
|
|
61
|
+
"CADMIUM_ORANGE": {'description': 'Cadmium orange (Cadmium selenide)', 'annotations': {'hex': 'FF6600', 'chemical': 'CdS·CdSe', 'warning': 'toxic'}},
|
|
62
|
+
"CADMIUM_RED": {'description': 'Cadmium red (Cadmium selenide)', 'meaning': 'CHEBI:50835', 'annotations': {'hex': 'E30022', 'chemical': 'CdSe', 'warning': 'toxic'}},
|
|
63
|
+
"VERMILION": {'description': 'Vermilion/Cinnabar (Mercury sulfide)', 'annotations': {'hex': 'E34234', 'chemical': 'HgS', 'warning': 'highly toxic'}},
|
|
64
|
+
"ALIZARIN_CRIMSON": {'description': 'Alizarin crimson (synthetic)', 'meaning': 'CHEBI:16866', 'annotations': {'hex': 'E32636', 'chemical': 'C14H8O4', 'organic': 'synthetic organic'}},
|
|
65
|
+
"CARMINE": {'description': 'Carmine (from cochineal insects)', 'annotations': {'hex': '960018', 'source': 'cochineal insects', 'natural': 'organic pigment'}},
|
|
66
|
+
"BURNT_SIENNA": {'description': 'Burnt sienna (heated iron oxide)', 'annotations': {'hex': 'E97451', 'chemical': 'Fe2O3', 'process': 'calcined raw sienna'}},
|
|
67
|
+
"RAW_SIENNA": {'description': 'Raw sienna (Iron oxide with clay)', 'annotations': {'hex': 'C69D52', 'chemical': 'Fe2O3 with clay', 'natural': 'earth pigment'}},
|
|
68
|
+
"BURNT_UMBER": {'description': 'Burnt umber (heated iron/manganese oxide)', 'annotations': {'hex': '8B4513', 'chemical': 'Fe2O3 + MnO2', 'process': 'calcined raw umber'}},
|
|
69
|
+
"RAW_UMBER": {'description': 'Raw umber (Iron/manganese oxide)', 'annotations': {'hex': '734A12', 'chemical': 'Fe2O3 + MnO2', 'natural': 'earth pigment'}},
|
|
70
|
+
"VAN_DYKE_BROWN": {'description': 'Van Dyke brown (organic earth)', 'annotations': {'hex': '664228', 'source': 'peat, lignite', 'warning': 'fugitive color'}},
|
|
71
|
+
"PRUSSIAN_BLUE": {'description': 'Prussian blue (Ferric ferrocyanide)', 'meaning': 'CHEBI:30069', 'annotations': {'hex': '003153', 'chemical': 'Fe4[Fe(CN)6]3', 'discovered': '1706'}},
|
|
72
|
+
"ULTRAMARINE": {'description': 'Ultramarine blue (originally lapis lazuli)', 'annotations': {'hex': '120A8F', 'chemical': 'Na8[Al6Si6O24]Sn', 'historical': 'most expensive pigment'}},
|
|
73
|
+
"COBALT_BLUE": {'description': 'Cobalt blue (Cobalt aluminate)', 'annotations': {'hex': '0047AB', 'chemical': 'CoAl2O4'}},
|
|
74
|
+
"CERULEAN_BLUE": {'description': 'Cerulean blue (Cobalt stannate)', 'annotations': {'hex': '2A52BE', 'chemical': 'Co2SnO4'}},
|
|
75
|
+
"PHTHALO_BLUE": {'description': 'Phthalocyanine blue', 'annotations': {'hex': '000F89', 'chemical': 'C32H16CuN8', 'modern': 'synthetic organic'}},
|
|
76
|
+
"VIRIDIAN": {'description': 'Viridian (Chromium oxide green)', 'annotations': {'hex': '40826D', 'chemical': 'Cr2O3·2H2O'}},
|
|
77
|
+
"CHROME_GREEN": {'description': 'Chrome oxide green', 'annotations': {'hex': '2E5E26', 'chemical': 'Cr2O3'}},
|
|
78
|
+
"PHTHALO_GREEN": {'description': 'Phthalocyanine green', 'annotations': {'hex': '123524', 'chemical': 'C32H16ClCuN8', 'modern': 'synthetic organic'}},
|
|
79
|
+
"TERRE_VERTE": {'description': 'Terre verte/Green earth', 'annotations': {'hex': '6B7F59', 'chemical': 'complex silicate', 'natural': 'earth pigment'}},
|
|
80
|
+
"TYRIAN_PURPLE": {'description': 'Tyrian purple (from murex snails)', 'annotations': {'hex': '66023C', 'source': 'murex snails', 'historical': 'ancient royal purple'}},
|
|
81
|
+
"MANGANESE_VIOLET": {'description': 'Manganese violet', 'annotations': {'hex': '8B3E5F', 'chemical': 'NH4MnP2O7'}},
|
|
82
|
+
"MARS_BLACK": {'description': 'Mars black (Synthetic iron oxide)', 'annotations': {'hex': '010101', 'chemical': 'Fe3O4', 'synthetic': 'iron oxide'}},
|
|
83
|
+
"IVORY_BLACK": {'description': 'Ivory black (Bone char)', 'annotations': {'hex': '1B1B1B', 'source': 'charred bones'}},
|
|
84
|
+
"LAMP_BLACK": {'description': 'Lamp black (Carbon black)', 'annotations': {'hex': '2B2B2B', 'chemical': 'C', 'source': 'soot'}},
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
class IndustrialDyeEnum(RichEnum):
|
|
88
|
+
"""
|
|
89
|
+
Industrial and textile dyes
|
|
90
|
+
"""
|
|
91
|
+
# Enum members
|
|
92
|
+
INDIGO = "INDIGO"
|
|
93
|
+
ANILINE_BLACK = "ANILINE_BLACK"
|
|
94
|
+
METHYLENE_BLUE = "METHYLENE_BLUE"
|
|
95
|
+
CONGO_RED = "CONGO_RED"
|
|
96
|
+
MALACHITE_GREEN = "MALACHITE_GREEN"
|
|
97
|
+
CRYSTAL_VIOLET = "CRYSTAL_VIOLET"
|
|
98
|
+
EOSIN = "EOSIN"
|
|
99
|
+
SAFRANIN = "SAFRANIN"
|
|
100
|
+
ACID_ORANGE_7 = "ACID_ORANGE_7"
|
|
101
|
+
REACTIVE_BLACK_5 = "REACTIVE_BLACK_5"
|
|
102
|
+
DISPERSE_BLUE_1 = "DISPERSE_BLUE_1"
|
|
103
|
+
VAT_BLUE_1 = "VAT_BLUE_1"
|
|
104
|
+
|
|
105
|
+
# Set metadata after class creation
|
|
106
|
+
IndustrialDyeEnum._metadata = {
|
|
107
|
+
"INDIGO": {'description': 'Indigo dye', 'annotations': {'hex': '4B0082', 'source': 'originally plant-based, now synthetic', 'use': 'denim, textiles'}},
|
|
108
|
+
"ANILINE_BLACK": {'description': 'Aniline black', 'annotations': {'hex': '000000', 'chemical': 'polyaniline', 'use': 'cotton dyeing'}},
|
|
109
|
+
"METHYLENE_BLUE": {'description': 'Methylene blue', 'annotations': {'hex': '1E90FF', 'chemical': 'C16H18ClN3S', 'use': 'biological stain, medical'}},
|
|
110
|
+
"CONGO_RED": {'description': 'Congo red', 'meaning': 'CHEBI:34653', 'annotations': {'hex': 'CC0000', 'chemical': 'C32H22N6Na2O6S2', 'use': 'pH indicator, textile'}},
|
|
111
|
+
"MALACHITE_GREEN": {'description': 'Malachite green', 'meaning': 'CHEBI:72449', 'annotations': {'hex': '0BDA51', 'chemical': 'C23H25ClN2', 'use': 'biological stain'}},
|
|
112
|
+
"CRYSTAL_VIOLET": {'description': 'Crystal violet/Gentian violet', 'meaning': 'CHEBI:41688', 'annotations': {'hex': '9400D3', 'chemical': 'C25H30ClN3', 'use': 'gram staining'}},
|
|
113
|
+
"EOSIN": {'description': 'Eosin Y', 'meaning': 'CHEBI:52053', 'annotations': {'hex': 'FF6B6B', 'chemical': 'C20H6Br4Na2O5', 'use': 'histology stain'}, 'aliases': ['eosin YS dye']},
|
|
114
|
+
"SAFRANIN": {'description': 'Safranin O', 'annotations': {'hex': 'FF0066', 'chemical': 'C20H19ClN4', 'use': 'biological stain'}},
|
|
115
|
+
"ACID_ORANGE_7": {'description': 'Acid Orange 7 (Orange II)', 'annotations': {'hex': 'FF7F00', 'chemical': 'C16H11N2NaO4S', 'use': 'wool, silk dyeing'}},
|
|
116
|
+
"REACTIVE_BLACK_5": {'description': 'Reactive Black 5', 'annotations': {'hex': '000000', 'use': 'cotton reactive dye'}},
|
|
117
|
+
"DISPERSE_BLUE_1": {'description': 'Disperse Blue 1', 'annotations': {'hex': '1560BD', 'use': 'polyester dyeing'}},
|
|
118
|
+
"VAT_BLUE_1": {'description': 'Vat Blue 1 (Indanthrene blue)', 'annotations': {'hex': '002F5C', 'use': 'cotton vat dyeing'}},
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
class FoodColoringEnum(RichEnum):
|
|
122
|
+
"""
|
|
123
|
+
Food coloring and natural food dyes
|
|
124
|
+
"""
|
|
125
|
+
# Enum members
|
|
126
|
+
FD_C_RED_40 = "FD_C_RED_40"
|
|
127
|
+
FD_C_YELLOW_5 = "FD_C_YELLOW_5"
|
|
128
|
+
FD_C_YELLOW_6 = "FD_C_YELLOW_6"
|
|
129
|
+
FD_C_BLUE_1 = "FD_C_BLUE_1"
|
|
130
|
+
FD_C_BLUE_2 = "FD_C_BLUE_2"
|
|
131
|
+
FD_C_GREEN_3 = "FD_C_GREEN_3"
|
|
132
|
+
CARAMEL_COLOR = "CARAMEL_COLOR"
|
|
133
|
+
ANNATTO = "ANNATTO"
|
|
134
|
+
TURMERIC = "TURMERIC"
|
|
135
|
+
BEETROOT_RED = "BEETROOT_RED"
|
|
136
|
+
CHLOROPHYLL = "CHLOROPHYLL"
|
|
137
|
+
ANTHOCYANINS = "ANTHOCYANINS"
|
|
138
|
+
PAPRIKA_EXTRACT = "PAPRIKA_EXTRACT"
|
|
139
|
+
SPIRULINA_BLUE = "SPIRULINA_BLUE"
|
|
140
|
+
|
|
141
|
+
# Set metadata after class creation
|
|
142
|
+
FoodColoringEnum._metadata = {
|
|
143
|
+
"FD_C_RED_40": {'description': 'FD&C Red No. 40 (Allura Red)', 'annotations': {'hex': 'E40000', 'E_number': 'E129', 'use': 'beverages, candies'}},
|
|
144
|
+
"FD_C_YELLOW_5": {'description': 'FD&C Yellow No. 5 (Tartrazine)', 'annotations': {'hex': 'FFFF00', 'E_number': 'E102', 'use': 'beverages, desserts'}},
|
|
145
|
+
"FD_C_YELLOW_6": {'description': 'FD&C Yellow No. 6 (Sunset Yellow)', 'annotations': {'hex': 'FFA500', 'E_number': 'E110', 'use': 'snacks, beverages'}},
|
|
146
|
+
"FD_C_BLUE_1": {'description': 'FD&C Blue No. 1 (Brilliant Blue)', 'meaning': 'CHEBI:82411', 'annotations': {'hex': '0033FF', 'E_number': 'E133', 'use': 'beverages, candies'}},
|
|
147
|
+
"FD_C_BLUE_2": {'description': 'FD&C Blue No. 2 (Indigo Carmine)', 'annotations': {'hex': '4B0082', 'E_number': 'E132', 'use': 'beverages, confections'}},
|
|
148
|
+
"FD_C_GREEN_3": {'description': 'FD&C Green No. 3 (Fast Green)', 'annotations': {'hex': '00FF00', 'E_number': 'E143', 'use': 'beverages, desserts'}},
|
|
149
|
+
"CARAMEL_COLOR": {'description': 'Caramel coloring', 'annotations': {'hex': '8B4513', 'E_number': 'E150', 'use': 'cola, sauces'}},
|
|
150
|
+
"ANNATTO": {'description': 'Annatto (natural orange)', 'meaning': 'CHEBI:3136', 'annotations': {'hex': 'FF6600', 'E_number': 'E160b', 'source': 'achiote seeds'}, 'aliases': ['bixin']},
|
|
151
|
+
"TURMERIC": {'description': 'Turmeric/Curcumin (natural yellow)', 'meaning': 'CHEBI:3962', 'annotations': {'hex': 'F0E442', 'E_number': 'E100', 'source': 'turmeric root'}},
|
|
152
|
+
"BEETROOT_RED": {'description': 'Beetroot red/Betanin', 'meaning': 'CHEBI:3080', 'annotations': {'hex': 'BC2A4D', 'E_number': 'E162', 'source': 'beets'}, 'aliases': ['Betanin']},
|
|
153
|
+
"CHLOROPHYLL": {'description': 'Chlorophyll (natural green)', 'meaning': 'CHEBI:28966', 'annotations': {'hex': '4D7C0F', 'E_number': 'E140', 'source': 'plants'}},
|
|
154
|
+
"ANTHOCYANINS": {'description': 'Anthocyanins (natural purple/red)', 'annotations': {'hex': '6B3AA0', 'E_number': 'E163', 'source': 'berries, grapes'}},
|
|
155
|
+
"PAPRIKA_EXTRACT": {'description': 'Paprika extract', 'annotations': {'hex': 'E85D00', 'E_number': 'E160c', 'source': 'paprika peppers'}},
|
|
156
|
+
"SPIRULINA_BLUE": {'description': 'Spirulina extract (phycocyanin)', 'annotations': {'hex': '1E88E5', 'source': 'spirulina algae', 'natural': 'true'}},
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
class AutomobilePaintColorEnum(RichEnum):
|
|
160
|
+
"""
|
|
161
|
+
Common automobile paint colors
|
|
162
|
+
"""
|
|
163
|
+
# Enum members
|
|
164
|
+
ARCTIC_WHITE = "ARCTIC_WHITE"
|
|
165
|
+
MIDNIGHT_BLACK = "MIDNIGHT_BLACK"
|
|
166
|
+
SILVER_METALLIC = "SILVER_METALLIC"
|
|
167
|
+
GUNMETAL_GRAY = "GUNMETAL_GRAY"
|
|
168
|
+
RACING_RED = "RACING_RED"
|
|
169
|
+
CANDY_APPLE_RED = "CANDY_APPLE_RED"
|
|
170
|
+
ELECTRIC_BLUE = "ELECTRIC_BLUE"
|
|
171
|
+
BRITISH_RACING_GREEN = "BRITISH_RACING_GREEN"
|
|
172
|
+
PEARL_WHITE = "PEARL_WHITE"
|
|
173
|
+
CHAMPAGNE_GOLD = "CHAMPAGNE_GOLD"
|
|
174
|
+
COPPER_BRONZE = "COPPER_BRONZE"
|
|
175
|
+
MIAMI_BLUE = "MIAMI_BLUE"
|
|
176
|
+
|
|
177
|
+
# Set metadata after class creation
|
|
178
|
+
AutomobilePaintColorEnum._metadata = {
|
|
179
|
+
"ARCTIC_WHITE": {'description': 'Arctic White', 'meaning': 'HEX:FFFFFF', 'annotations': {'type': 'solid'}},
|
|
180
|
+
"MIDNIGHT_BLACK": {'description': 'Midnight Black', 'meaning': 'HEX:000000', 'annotations': {'type': 'metallic'}},
|
|
181
|
+
"SILVER_METALLIC": {'description': 'Silver Metallic', 'meaning': 'HEX:C0C0C0', 'annotations': {'type': 'metallic'}},
|
|
182
|
+
"GUNMETAL_GRAY": {'description': 'Gunmetal Gray', 'meaning': 'HEX:2A3439', 'annotations': {'type': 'metallic'}},
|
|
183
|
+
"RACING_RED": {'description': 'Racing Red', 'meaning': 'HEX:CE1620', 'annotations': {'type': 'solid'}},
|
|
184
|
+
"CANDY_APPLE_RED": {'description': 'Candy Apple Red', 'meaning': 'HEX:FF0800', 'annotations': {'type': 'metallic'}},
|
|
185
|
+
"ELECTRIC_BLUE": {'description': 'Electric Blue', 'meaning': 'HEX:7DF9FF', 'annotations': {'type': 'metallic'}},
|
|
186
|
+
"BRITISH_RACING_GREEN": {'description': 'British Racing Green', 'meaning': 'HEX:004225', 'annotations': {'type': 'solid', 'historical': 'British racing color'}},
|
|
187
|
+
"PEARL_WHITE": {'description': 'Pearl White', 'meaning': 'HEX:F8F8FF', 'annotations': {'type': 'pearl', 'finish': 'pearlescent'}},
|
|
188
|
+
"CHAMPAGNE_GOLD": {'description': 'Champagne Gold', 'meaning': 'HEX:D4AF37', 'annotations': {'type': 'metallic'}},
|
|
189
|
+
"COPPER_BRONZE": {'description': 'Copper Bronze', 'meaning': 'HEX:B87333', 'annotations': {'type': 'metallic'}},
|
|
190
|
+
"MIAMI_BLUE": {'description': 'Miami Blue', 'meaning': 'HEX:00BFFF', 'annotations': {'type': 'metallic', 'brand': 'Porsche'}},
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
__all__ = [
|
|
194
|
+
"TraditionalPigmentEnum",
|
|
195
|
+
"IndustrialDyeEnum",
|
|
196
|
+
"FoodColoringEnum",
|
|
197
|
+
"AutomobilePaintColorEnum",
|
|
198
|
+
]
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
"""
|
|
2
|
+
|
|
3
|
+
Generated from: materials_science/synthesis_methods.yaml
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
|
|
8
|
+
from typing import Dict, Any, Optional
|
|
9
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
10
|
+
|
|
11
|
+
class SynthesisMethodEnum(RichEnum):
|
|
12
|
+
"""
|
|
13
|
+
Common material synthesis and processing methods
|
|
14
|
+
"""
|
|
15
|
+
# Enum members
|
|
16
|
+
SOL_GEL = "SOL_GEL"
|
|
17
|
+
HYDROTHERMAL = "HYDROTHERMAL"
|
|
18
|
+
SOLVOTHERMAL = "SOLVOTHERMAL"
|
|
19
|
+
CVD = "CVD"
|
|
20
|
+
PVD = "PVD"
|
|
21
|
+
ALD = "ALD"
|
|
22
|
+
ELECTRODEPOSITION = "ELECTRODEPOSITION"
|
|
23
|
+
BALL_MILLING = "BALL_MILLING"
|
|
24
|
+
PRECIPITATION = "PRECIPITATION"
|
|
25
|
+
SINTERING = "SINTERING"
|
|
26
|
+
MELT_PROCESSING = "MELT_PROCESSING"
|
|
27
|
+
SOLUTION_CASTING = "SOLUTION_CASTING"
|
|
28
|
+
SPIN_COATING = "SPIN_COATING"
|
|
29
|
+
DIP_COATING = "DIP_COATING"
|
|
30
|
+
SPRAY_COATING = "SPRAY_COATING"
|
|
31
|
+
|
|
32
|
+
# Set metadata after class creation
|
|
33
|
+
SynthesisMethodEnum._metadata = {
|
|
34
|
+
"SOL_GEL": {'description': 'Synthesis from solution through gel formation', 'aliases': ['sol-gel process']},
|
|
35
|
+
"HYDROTHERMAL": {'description': 'Synthesis using high temperature aqueous solutions', 'aliases': ['hydrothermal synthesis']},
|
|
36
|
+
"SOLVOTHERMAL": {'description': 'Synthesis using non-aqueous solvents at high temperature/pressure'},
|
|
37
|
+
"CVD": {'description': 'Chemical Vapor Deposition', 'meaning': 'CHMO:0001314', 'aliases': ['Chemical Vapor Deposition', 'CVD']},
|
|
38
|
+
"PVD": {'description': 'Physical Vapor Deposition', 'meaning': 'CHMO:0001356', 'aliases': ['Physical Vapor Deposition', 'PVD']},
|
|
39
|
+
"ALD": {'description': 'Atomic Layer Deposition', 'aliases': ['Atomic Layer Deposition']},
|
|
40
|
+
"ELECTRODEPOSITION": {'description': 'Deposition using electric current', 'meaning': 'CHMO:0001331', 'aliases': ['electroplating', 'Electrodeposition', 'ELECTRODEPOSITION']},
|
|
41
|
+
"BALL_MILLING": {'description': 'Mechanical alloying using ball mill', 'aliases': ['mechanical alloying']},
|
|
42
|
+
"PRECIPITATION": {'description': 'Formation of solid from solution', 'meaning': 'CHMO:0001688', 'aliases': ['Precipitation', 'PRECIPITATION']},
|
|
43
|
+
"SINTERING": {'description': 'Compacting and forming solid mass by heat/pressure'},
|
|
44
|
+
"MELT_PROCESSING": {'description': 'Processing from molten state', 'aliases': ['melt casting']},
|
|
45
|
+
"SOLUTION_CASTING": {'description': 'Casting from solution'},
|
|
46
|
+
"SPIN_COATING": {'description': 'Coating by spinning substrate', 'meaning': 'CHMO:0001472'},
|
|
47
|
+
"DIP_COATING": {'description': 'Coating by dipping in solution', 'meaning': 'CHMO:0001471'},
|
|
48
|
+
"SPRAY_COATING": {'description': 'Coating by spraying'},
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
class CrystalGrowthMethodEnum(RichEnum):
|
|
52
|
+
"""
|
|
53
|
+
Methods for growing single crystals
|
|
54
|
+
"""
|
|
55
|
+
# Enum members
|
|
56
|
+
CZOCHRALSKI = "CZOCHRALSKI"
|
|
57
|
+
BRIDGMAN = "BRIDGMAN"
|
|
58
|
+
FLOAT_ZONE = "FLOAT_ZONE"
|
|
59
|
+
FLUX_GROWTH = "FLUX_GROWTH"
|
|
60
|
+
VAPOR_TRANSPORT = "VAPOR_TRANSPORT"
|
|
61
|
+
HYDROTHERMAL_GROWTH = "HYDROTHERMAL_GROWTH"
|
|
62
|
+
LPE = "LPE"
|
|
63
|
+
MBE = "MBE"
|
|
64
|
+
MOCVD = "MOCVD"
|
|
65
|
+
|
|
66
|
+
# Set metadata after class creation
|
|
67
|
+
CrystalGrowthMethodEnum._metadata = {
|
|
68
|
+
"CZOCHRALSKI": {'description': 'Crystal pulling from melt', 'aliases': ['CZ', 'crystal pulling']},
|
|
69
|
+
"BRIDGMAN": {'description': 'Directional solidification method', 'aliases': ['Bridgman-Stockbarger']},
|
|
70
|
+
"FLOAT_ZONE": {'description': 'Zone melting without crucible', 'aliases': ['FZ', 'zone refining']},
|
|
71
|
+
"FLUX_GROWTH": {'description': 'Crystal growth from high temperature solution'},
|
|
72
|
+
"VAPOR_TRANSPORT": {'description': 'Crystal growth via vapor phase transport', 'aliases': ['CVT']},
|
|
73
|
+
"HYDROTHERMAL_GROWTH": {'description': 'Crystal growth in aqueous solution under pressure'},
|
|
74
|
+
"LPE": {'description': 'Liquid Phase Epitaxy', 'aliases': ['Liquid Phase Epitaxy']},
|
|
75
|
+
"MBE": {'description': 'Molecular Beam Epitaxy', 'meaning': 'CHMO:0001341', 'aliases': ['Molecular Beam Epitaxy', 'MBE']},
|
|
76
|
+
"MOCVD": {'description': 'Metal-Organic Chemical Vapor Deposition', 'aliases': ['MOVPE']},
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
class AdditiveManufacturingEnum(RichEnum):
|
|
80
|
+
"""
|
|
81
|
+
3D printing and additive manufacturing methods
|
|
82
|
+
"""
|
|
83
|
+
# Enum members
|
|
84
|
+
FDM = "FDM"
|
|
85
|
+
SLA = "SLA"
|
|
86
|
+
SLS = "SLS"
|
|
87
|
+
SLM = "SLM"
|
|
88
|
+
EBM = "EBM"
|
|
89
|
+
BINDER_JETTING = "BINDER_JETTING"
|
|
90
|
+
MATERIAL_JETTING = "MATERIAL_JETTING"
|
|
91
|
+
DED = "DED"
|
|
92
|
+
|
|
93
|
+
# Set metadata after class creation
|
|
94
|
+
AdditiveManufacturingEnum._metadata = {
|
|
95
|
+
"FDM": {'description': 'Fused Deposition Modeling', 'aliases': ['FFF', 'Fused Filament Fabrication']},
|
|
96
|
+
"SLA": {'description': 'Stereolithography', 'aliases': ['Stereolithography']},
|
|
97
|
+
"SLS": {'description': 'Selective Laser Sintering', 'aliases': ['Selective Laser Sintering']},
|
|
98
|
+
"SLM": {'description': 'Selective Laser Melting', 'aliases': ['Selective Laser Melting']},
|
|
99
|
+
"EBM": {'description': 'Electron Beam Melting', 'aliases': ['Electron Beam Melting']},
|
|
100
|
+
"BINDER_JETTING": {'description': 'Powder bed with liquid binder'},
|
|
101
|
+
"MATERIAL_JETTING": {'description': 'Droplet deposition of materials', 'aliases': ['PolyJet']},
|
|
102
|
+
"DED": {'description': 'Directed Energy Deposition', 'aliases': ['Directed Energy Deposition']},
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
__all__ = [
|
|
106
|
+
"SynthesisMethodEnum",
|
|
107
|
+
"CrystalGrowthMethodEnum",
|
|
108
|
+
"AdditiveManufacturingEnum",
|
|
109
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Auto-generated package."""
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Clinical and Medical Value Sets
|
|
3
|
+
|
|
4
|
+
Value sets for clinical and medical domains including blood types, anatomical systems, medical specialties, drug routes, and diagnostic categories.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Generated from: medical/clinical.yaml
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from __future__ import annotations
|
|
11
|
+
|
|
12
|
+
from typing import Dict, Any, Optional
|
|
13
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
14
|
+
|
|
15
|
+
class BloodTypeEnum(RichEnum):
|
|
16
|
+
"""
|
|
17
|
+
ABO and Rh blood group classifications
|
|
18
|
+
"""
|
|
19
|
+
# Enum members
|
|
20
|
+
A_POSITIVE = "A_POSITIVE"
|
|
21
|
+
A_NEGATIVE = "A_NEGATIVE"
|
|
22
|
+
B_POSITIVE = "B_POSITIVE"
|
|
23
|
+
B_NEGATIVE = "B_NEGATIVE"
|
|
24
|
+
AB_POSITIVE = "AB_POSITIVE"
|
|
25
|
+
AB_NEGATIVE = "AB_NEGATIVE"
|
|
26
|
+
O_POSITIVE = "O_POSITIVE"
|
|
27
|
+
O_NEGATIVE = "O_NEGATIVE"
|
|
28
|
+
|
|
29
|
+
# Set metadata after class creation
|
|
30
|
+
BloodTypeEnum._metadata = {
|
|
31
|
+
"A_POSITIVE": {'description': 'Blood type A, Rh positive', 'meaning': 'SNOMED:278149003', 'annotations': {'abo': 'A', 'rh': 'positive', 'can_receive': 'A+, A-, O+, O-', 'can_donate': 'A+, AB+'}},
|
|
32
|
+
"A_NEGATIVE": {'description': 'Blood type A, Rh negative', 'meaning': 'SNOMED:278152006', 'annotations': {'abo': 'A', 'rh': 'negative', 'can_receive': 'A-, O-', 'can_donate': 'A+, A-, AB+, AB-'}},
|
|
33
|
+
"B_POSITIVE": {'description': 'Blood type B, Rh positive', 'meaning': 'SNOMED:278150003', 'annotations': {'abo': 'B', 'rh': 'positive', 'can_receive': 'B+, B-, O+, O-', 'can_donate': 'B+, AB+'}},
|
|
34
|
+
"B_NEGATIVE": {'description': 'Blood type B, Rh negative', 'meaning': 'SNOMED:278153001', 'annotations': {'abo': 'B', 'rh': 'negative', 'can_receive': 'B-, O-', 'can_donate': 'B+, B-, AB+, AB-'}},
|
|
35
|
+
"AB_POSITIVE": {'description': 'Blood type AB, Rh positive (universal recipient)', 'meaning': 'SNOMED:278151004', 'annotations': {'abo': 'AB', 'rh': 'positive', 'can_receive': 'all types', 'can_donate': 'AB+', 'special': 'universal recipient'}},
|
|
36
|
+
"AB_NEGATIVE": {'description': 'Blood type AB, Rh negative', 'meaning': 'SNOMED:278154007', 'annotations': {'abo': 'AB', 'rh': 'negative', 'can_receive': 'A-, B-, AB-, O-', 'can_donate': 'AB+, AB-'}},
|
|
37
|
+
"O_POSITIVE": {'description': 'Blood type O, Rh positive', 'meaning': 'SNOMED:278147001', 'annotations': {'abo': 'O', 'rh': 'positive', 'can_receive': 'O+, O-', 'can_donate': 'A+, B+, AB+, O+'}},
|
|
38
|
+
"O_NEGATIVE": {'description': 'Blood type O, Rh negative (universal donor)', 'meaning': 'SNOMED:278148006', 'annotations': {'abo': 'O', 'rh': 'negative', 'can_receive': 'O-', 'can_donate': 'all types', 'special': 'universal donor'}},
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
class AnatomicalSystemEnum(RichEnum):
|
|
42
|
+
"""
|
|
43
|
+
Major anatomical systems of the body
|
|
44
|
+
"""
|
|
45
|
+
# Enum members
|
|
46
|
+
CARDIOVASCULAR = "CARDIOVASCULAR"
|
|
47
|
+
RESPIRATORY = "RESPIRATORY"
|
|
48
|
+
NERVOUS = "NERVOUS"
|
|
49
|
+
DIGESTIVE = "DIGESTIVE"
|
|
50
|
+
MUSCULOSKELETAL = "MUSCULOSKELETAL"
|
|
51
|
+
INTEGUMENTARY = "INTEGUMENTARY"
|
|
52
|
+
ENDOCRINE = "ENDOCRINE"
|
|
53
|
+
URINARY = "URINARY"
|
|
54
|
+
REPRODUCTIVE = "REPRODUCTIVE"
|
|
55
|
+
IMMUNE = "IMMUNE"
|
|
56
|
+
HEMATOLOGIC = "HEMATOLOGIC"
|
|
57
|
+
|
|
58
|
+
# Set metadata after class creation
|
|
59
|
+
AnatomicalSystemEnum._metadata = {
|
|
60
|
+
"CARDIOVASCULAR": {'meaning': 'UBERON:0004535', 'annotations': {'components': 'heart, arteries, veins, capillaries'}, 'aliases': ['cardiovascular system']},
|
|
61
|
+
"RESPIRATORY": {'meaning': 'UBERON:0001004', 'annotations': {'components': 'lungs, trachea, bronchi, diaphragm'}, 'aliases': ['respiratory system']},
|
|
62
|
+
"NERVOUS": {'meaning': 'UBERON:0001016', 'annotations': {'components': 'brain, spinal cord, nerves'}, 'aliases': ['nervous system']},
|
|
63
|
+
"DIGESTIVE": {'meaning': 'UBERON:0001007', 'annotations': {'components': 'mouth, esophagus, stomach, intestines, liver, pancreas'}, 'aliases': ['digestive system']},
|
|
64
|
+
"MUSCULOSKELETAL": {'meaning': 'UBERON:0002204', 'annotations': {'components': 'bones, muscles, tendons, ligaments, cartilage'}, 'aliases': ['musculoskeletal system']},
|
|
65
|
+
"INTEGUMENTARY": {'meaning': 'UBERON:0002416', 'annotations': {'components': 'skin, hair, nails, glands'}, 'aliases': ['integumental system']},
|
|
66
|
+
"ENDOCRINE": {'meaning': 'UBERON:0000949', 'annotations': {'components': 'pituitary, thyroid, adrenals, pancreas'}, 'aliases': ['endocrine system']},
|
|
67
|
+
"URINARY": {'meaning': 'UBERON:0001008', 'annotations': {'components': 'kidneys, ureters, bladder, urethra'}, 'aliases': ['renal system']},
|
|
68
|
+
"REPRODUCTIVE": {'meaning': 'UBERON:0000990', 'annotations': {'components': 'gonads, ducts, external genitalia'}, 'aliases': ['reproductive system']},
|
|
69
|
+
"IMMUNE": {'meaning': 'UBERON:0002405', 'annotations': {'components': 'lymph nodes, spleen, thymus, bone marrow'}, 'aliases': ['immune system']},
|
|
70
|
+
"HEMATOLOGIC": {'meaning': 'UBERON:0002390', 'annotations': {'components': 'blood, bone marrow, spleen'}, 'aliases': ['hematopoietic system']},
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
class MedicalSpecialtyEnum(RichEnum):
|
|
74
|
+
# Enum members
|
|
75
|
+
ANESTHESIOLOGY = "ANESTHESIOLOGY"
|
|
76
|
+
CARDIOLOGY = "CARDIOLOGY"
|
|
77
|
+
DERMATOLOGY = "DERMATOLOGY"
|
|
78
|
+
EMERGENCY_MEDICINE = "EMERGENCY_MEDICINE"
|
|
79
|
+
ENDOCRINOLOGY = "ENDOCRINOLOGY"
|
|
80
|
+
FAMILY_MEDICINE = "FAMILY_MEDICINE"
|
|
81
|
+
GASTROENTEROLOGY = "GASTROENTEROLOGY"
|
|
82
|
+
HEMATOLOGY = "HEMATOLOGY"
|
|
83
|
+
INFECTIOUS_DISEASE = "INFECTIOUS_DISEASE"
|
|
84
|
+
INTERNAL_MEDICINE = "INTERNAL_MEDICINE"
|
|
85
|
+
NEPHROLOGY = "NEPHROLOGY"
|
|
86
|
+
NEUROLOGY = "NEUROLOGY"
|
|
87
|
+
OBSTETRICS_GYNECOLOGY = "OBSTETRICS_GYNECOLOGY"
|
|
88
|
+
ONCOLOGY = "ONCOLOGY"
|
|
89
|
+
OPHTHALMOLOGY = "OPHTHALMOLOGY"
|
|
90
|
+
ORTHOPEDICS = "ORTHOPEDICS"
|
|
91
|
+
OTOLARYNGOLOGY = "OTOLARYNGOLOGY"
|
|
92
|
+
PATHOLOGY = "PATHOLOGY"
|
|
93
|
+
PEDIATRICS = "PEDIATRICS"
|
|
94
|
+
PSYCHIATRY = "PSYCHIATRY"
|
|
95
|
+
PULMONOLOGY = "PULMONOLOGY"
|
|
96
|
+
RADIOLOGY = "RADIOLOGY"
|
|
97
|
+
RHEUMATOLOGY = "RHEUMATOLOGY"
|
|
98
|
+
SURGERY = "SURGERY"
|
|
99
|
+
UROLOGY = "UROLOGY"
|
|
100
|
+
|
|
101
|
+
# Set metadata after class creation
|
|
102
|
+
MedicalSpecialtyEnum._metadata = {
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
class DrugRouteEnum(RichEnum):
|
|
106
|
+
# Enum members
|
|
107
|
+
ORAL = "ORAL"
|
|
108
|
+
INTRAVENOUS = "INTRAVENOUS"
|
|
109
|
+
INTRAMUSCULAR = "INTRAMUSCULAR"
|
|
110
|
+
SUBCUTANEOUS = "SUBCUTANEOUS"
|
|
111
|
+
TOPICAL = "TOPICAL"
|
|
112
|
+
INHALATION = "INHALATION"
|
|
113
|
+
RECTAL = "RECTAL"
|
|
114
|
+
INTRANASAL = "INTRANASAL"
|
|
115
|
+
TRANSDERMAL = "TRANSDERMAL"
|
|
116
|
+
SUBLINGUAL = "SUBLINGUAL"
|
|
117
|
+
EPIDURAL = "EPIDURAL"
|
|
118
|
+
INTRATHECAL = "INTRATHECAL"
|
|
119
|
+
OPHTHALMIC = "OPHTHALMIC"
|
|
120
|
+
OTIC = "OTIC"
|
|
121
|
+
|
|
122
|
+
# Set metadata after class creation
|
|
123
|
+
DrugRouteEnum._metadata = {
|
|
124
|
+
"ORAL": {'meaning': 'NCIT:C38288', 'annotations': {'abbreviation': 'PO', 'absorption': 'GI tract'}, 'aliases': ['Oral Route of Administration']},
|
|
125
|
+
"INTRAVENOUS": {'meaning': 'NCIT:C38276', 'annotations': {'abbreviation': 'IV', 'onset': 'immediate'}, 'aliases': ['Intravenous Route of Administration']},
|
|
126
|
+
"INTRAMUSCULAR": {'meaning': 'NCIT:C28161', 'annotations': {'abbreviation': 'IM', 'sites': 'deltoid, gluteus, vastus lateralis'}, 'aliases': ['Intramuscular Route of Administration']},
|
|
127
|
+
"SUBCUTANEOUS": {'meaning': 'NCIT:C38299', 'annotations': {'abbreviation': 'SC, SubQ', 'absorption': 'slow'}, 'aliases': ['Subcutaneous Route of Administration']},
|
|
128
|
+
"TOPICAL": {'meaning': 'NCIT:C38304', 'annotations': {'forms': 'cream, ointment, gel'}, 'aliases': ['Topical Route of Administration']},
|
|
129
|
+
"INHALATION": {'meaning': 'NCIT:C38216', 'annotations': {'devices': 'inhaler, nebulizer'}, 'aliases': ['Inhalation Route of Administration']},
|
|
130
|
+
"RECTAL": {'meaning': 'NCIT:C38295', 'annotations': {'forms': 'suppository, enema'}, 'aliases': ['Rectal Route of Administration']},
|
|
131
|
+
"INTRANASAL": {'meaning': 'NCIT:C38284', 'annotations': {'forms': 'spray, drops'}, 'aliases': ['Nasal Route of Administration']},
|
|
132
|
+
"TRANSDERMAL": {'meaning': 'NCIT:C38305', 'annotations': {'forms': 'patch'}, 'aliases': ['Transdermal Route of Administration']},
|
|
133
|
+
"SUBLINGUAL": {'meaning': 'NCIT:C38300', 'annotations': {'absorption': 'rapid'}, 'aliases': ['Sublingual Route of Administration']},
|
|
134
|
+
"EPIDURAL": {'meaning': 'NCIT:C38243', 'annotations': {'use': 'anesthesia, analgesia'}, 'aliases': ['Intraepidermal Route of Administration']},
|
|
135
|
+
"INTRATHECAL": {'meaning': 'NCIT:C38277', 'annotations': {'use': 'CNS drugs'}, 'aliases': ['Intraventricular Route of Administration']},
|
|
136
|
+
"OPHTHALMIC": {'meaning': 'NCIT:C38287', 'annotations': {'forms': 'drops, ointment'}, 'aliases': ['Ophthalmic Route of Administration']},
|
|
137
|
+
"OTIC": {'meaning': 'NCIT:C38192', 'annotations': {'forms': 'drops'}, 'aliases': ['Auricular Route of Administration']},
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class VitalSignEnum(RichEnum):
|
|
141
|
+
# Enum members
|
|
142
|
+
HEART_RATE = "HEART_RATE"
|
|
143
|
+
BLOOD_PRESSURE_SYSTOLIC = "BLOOD_PRESSURE_SYSTOLIC"
|
|
144
|
+
BLOOD_PRESSURE_DIASTOLIC = "BLOOD_PRESSURE_DIASTOLIC"
|
|
145
|
+
RESPIRATORY_RATE = "RESPIRATORY_RATE"
|
|
146
|
+
TEMPERATURE = "TEMPERATURE"
|
|
147
|
+
OXYGEN_SATURATION = "OXYGEN_SATURATION"
|
|
148
|
+
PAIN_SCALE = "PAIN_SCALE"
|
|
149
|
+
|
|
150
|
+
# Set metadata after class creation
|
|
151
|
+
VitalSignEnum._metadata = {
|
|
152
|
+
"HEART_RATE": {'meaning': 'LOINC:8867-4', 'annotations': {'normal_range': '60-100 bpm', 'units': 'beats/min'}},
|
|
153
|
+
"BLOOD_PRESSURE_SYSTOLIC": {'meaning': 'LOINC:8480-6', 'annotations': {'normal_range': '<120 mmHg', 'units': 'mmHg'}},
|
|
154
|
+
"BLOOD_PRESSURE_DIASTOLIC": {'meaning': 'LOINC:8462-4', 'annotations': {'normal_range': '<80 mmHg', 'units': 'mmHg'}},
|
|
155
|
+
"RESPIRATORY_RATE": {'meaning': 'LOINC:9279-1', 'annotations': {'normal_range': '12-20 breaths/min', 'units': 'breaths/min'}},
|
|
156
|
+
"TEMPERATURE": {'meaning': 'LOINC:8310-5', 'annotations': {'normal_range': '36.5-37.5°C', 'units': '°C or °F'}},
|
|
157
|
+
"OXYGEN_SATURATION": {'meaning': 'LOINC:2708-6', 'annotations': {'normal_range': '95-100%', 'units': '%'}},
|
|
158
|
+
"PAIN_SCALE": {'meaning': 'LOINC:38208-5', 'annotations': {'scale': '0-10', 'type': 'subjective'}},
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
class DiagnosticTestTypeEnum(RichEnum):
|
|
162
|
+
# Enum members
|
|
163
|
+
BLOOD_TEST = "BLOOD_TEST"
|
|
164
|
+
URINE_TEST = "URINE_TEST"
|
|
165
|
+
IMAGING_XRAY = "IMAGING_XRAY"
|
|
166
|
+
IMAGING_CT = "IMAGING_CT"
|
|
167
|
+
IMAGING_MRI = "IMAGING_MRI"
|
|
168
|
+
IMAGING_ULTRASOUND = "IMAGING_ULTRASOUND"
|
|
169
|
+
IMAGING_PET = "IMAGING_PET"
|
|
170
|
+
ECG = "ECG"
|
|
171
|
+
EEG = "EEG"
|
|
172
|
+
BIOPSY = "BIOPSY"
|
|
173
|
+
ENDOSCOPY = "ENDOSCOPY"
|
|
174
|
+
GENETIC_TEST = "GENETIC_TEST"
|
|
175
|
+
|
|
176
|
+
# Set metadata after class creation
|
|
177
|
+
DiagnosticTestTypeEnum._metadata = {
|
|
178
|
+
"BLOOD_TEST": {'meaning': 'NCIT:C15189', 'annotations': {'samples': 'serum, plasma, whole blood'}, 'aliases': ['Biopsy Procedure']},
|
|
179
|
+
"URINE_TEST": {'annotations': {'types': 'urinalysis, culture, drug screen'}, 'aliases': ['Tissue Factor']},
|
|
180
|
+
"IMAGING_XRAY": {'meaning': 'NCIT:C17262', 'annotations': {'radiation': 'yes'}, 'aliases': ['X-Ray']},
|
|
181
|
+
"IMAGING_CT": {'meaning': 'NCIT:C17204', 'annotations': {'radiation': 'yes'}, 'aliases': ['Computed Tomography']},
|
|
182
|
+
"IMAGING_MRI": {'meaning': 'NCIT:C16809', 'annotations': {'radiation': 'no'}, 'aliases': ['Magnetic Resonance Imaging']},
|
|
183
|
+
"IMAGING_ULTRASOUND": {'meaning': 'NCIT:C17230', 'annotations': {'radiation': 'no'}, 'aliases': ['Ultrasound Imaging']},
|
|
184
|
+
"IMAGING_PET": {'meaning': 'NCIT:C17007', 'annotations': {'uses': 'radiotracer'}, 'aliases': ['Positron Emission Tomography']},
|
|
185
|
+
"ECG": {'meaning': 'NCIT:C38054', 'annotations': {'measures': 'heart electrical activity'}, 'aliases': ['Electroencephalography']},
|
|
186
|
+
"EEG": {'annotations': {'measures': 'brain electrical activity'}, 'aliases': ['Djibouti']},
|
|
187
|
+
"BIOPSY": {'meaning': 'NCIT:C15189', 'annotations': {'invasive': 'yes'}, 'aliases': ['Biopsy Procedure']},
|
|
188
|
+
"ENDOSCOPY": {'meaning': 'NCIT:C16546', 'annotations': {'types': 'colonoscopy, gastroscopy, bronchoscopy'}, 'aliases': ['Endoscopic Procedure']},
|
|
189
|
+
"GENETIC_TEST": {'meaning': 'NCIT:C15709', 'annotations': {'types': 'karyotype, sequencing, PCR'}, 'aliases': ['Genetic Testing']},
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
class SymptomSeverityEnum(RichEnum):
|
|
193
|
+
# Enum members
|
|
194
|
+
ABSENT = "ABSENT"
|
|
195
|
+
MILD = "MILD"
|
|
196
|
+
MODERATE = "MODERATE"
|
|
197
|
+
SEVERE = "SEVERE"
|
|
198
|
+
LIFE_THREATENING = "LIFE_THREATENING"
|
|
199
|
+
|
|
200
|
+
# Set metadata after class creation
|
|
201
|
+
SymptomSeverityEnum._metadata = {
|
|
202
|
+
"ABSENT": {'annotations': {'grade': '0'}, 'aliases': ['Blood group B']},
|
|
203
|
+
"MILD": {'meaning': 'HP:0012825', 'annotations': {'grade': '1', 'impact': 'minimal daily activity limitation'}},
|
|
204
|
+
"MODERATE": {'meaning': 'HP:0012826', 'annotations': {'grade': '2', 'impact': 'some daily activity limitation'}},
|
|
205
|
+
"SEVERE": {'meaning': 'HP:0012828', 'annotations': {'grade': '3', 'impact': 'significant daily activity limitation'}},
|
|
206
|
+
"LIFE_THREATENING": {'annotations': {'grade': '4', 'impact': 'urgent intervention required'}, 'aliases': ['Profound']},
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
class AllergyTypeEnum(RichEnum):
|
|
210
|
+
# Enum members
|
|
211
|
+
DRUG = "DRUG"
|
|
212
|
+
FOOD = "FOOD"
|
|
213
|
+
ENVIRONMENTAL = "ENVIRONMENTAL"
|
|
214
|
+
CONTACT = "CONTACT"
|
|
215
|
+
INSECT = "INSECT"
|
|
216
|
+
ANAPHYLAXIS = "ANAPHYLAXIS"
|
|
217
|
+
|
|
218
|
+
# Set metadata after class creation
|
|
219
|
+
AllergyTypeEnum._metadata = {
|
|
220
|
+
"DRUG": {'meaning': 'NCIT:C3114', 'annotations': {'examples': 'penicillin, sulfa drugs'}, 'aliases': ['Hypersensitivity']},
|
|
221
|
+
"FOOD": {'annotations': {'common': 'nuts, shellfish, eggs, milk'}},
|
|
222
|
+
"ENVIRONMENTAL": {'annotations': {'examples': 'pollen, dust, mold'}},
|
|
223
|
+
"CONTACT": {'annotations': {'examples': 'latex, nickel, poison ivy'}},
|
|
224
|
+
"INSECT": {'annotations': {'examples': 'bee, wasp, hornet'}},
|
|
225
|
+
"ANAPHYLAXIS": {'annotations': {'severity': 'life-threatening'}},
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
class VaccineTypeEnum(RichEnum):
|
|
229
|
+
# Enum members
|
|
230
|
+
LIVE_ATTENUATED = "LIVE_ATTENUATED"
|
|
231
|
+
INACTIVATED = "INACTIVATED"
|
|
232
|
+
SUBUNIT = "SUBUNIT"
|
|
233
|
+
TOXOID = "TOXOID"
|
|
234
|
+
MRNA = "MRNA"
|
|
235
|
+
VIRAL_VECTOR = "VIRAL_VECTOR"
|
|
236
|
+
|
|
237
|
+
# Set metadata after class creation
|
|
238
|
+
VaccineTypeEnum._metadata = {
|
|
239
|
+
"LIVE_ATTENUATED": {'annotations': {'examples': 'MMR, varicella, yellow fever'}},
|
|
240
|
+
"INACTIVATED": {'annotations': {'examples': 'flu shot, hepatitis A, rabies'}},
|
|
241
|
+
"SUBUNIT": {'annotations': {'examples': 'hepatitis B, HPV, pertussis'}},
|
|
242
|
+
"TOXOID": {'annotations': {'examples': 'diphtheria, tetanus'}},
|
|
243
|
+
"MRNA": {'annotations': {'examples': 'COVID-19 (Pfizer, Moderna)'}},
|
|
244
|
+
"VIRAL_VECTOR": {'annotations': {'examples': 'COVID-19 (J&J, AstraZeneca)'}},
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
class BMIClassificationEnum(RichEnum):
|
|
248
|
+
# Enum members
|
|
249
|
+
UNDERWEIGHT = "UNDERWEIGHT"
|
|
250
|
+
NORMAL_WEIGHT = "NORMAL_WEIGHT"
|
|
251
|
+
OVERWEIGHT = "OVERWEIGHT"
|
|
252
|
+
OBESE_CLASS_I = "OBESE_CLASS_I"
|
|
253
|
+
OBESE_CLASS_II = "OBESE_CLASS_II"
|
|
254
|
+
OBESE_CLASS_III = "OBESE_CLASS_III"
|
|
255
|
+
|
|
256
|
+
# Set metadata after class creation
|
|
257
|
+
BMIClassificationEnum._metadata = {
|
|
258
|
+
"UNDERWEIGHT": {'annotations': {'bmi_range': '<18.5'}},
|
|
259
|
+
"NORMAL_WEIGHT": {'annotations': {'bmi_range': '18.5-24.9'}},
|
|
260
|
+
"OVERWEIGHT": {'annotations': {'bmi_range': '25.0-29.9'}},
|
|
261
|
+
"OBESE_CLASS_I": {'annotations': {'bmi_range': '30.0-34.9'}},
|
|
262
|
+
"OBESE_CLASS_II": {'annotations': {'bmi_range': '35.0-39.9'}},
|
|
263
|
+
"OBESE_CLASS_III": {'annotations': {'bmi_range': '≥40.0', 'aliases': 'morbid obesity'}},
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
__all__ = [
|
|
267
|
+
"BloodTypeEnum",
|
|
268
|
+
"AnatomicalSystemEnum",
|
|
269
|
+
"MedicalSpecialtyEnum",
|
|
270
|
+
"DrugRouteEnum",
|
|
271
|
+
"VitalSignEnum",
|
|
272
|
+
"DiagnosticTestTypeEnum",
|
|
273
|
+
"SymptomSeverityEnum",
|
|
274
|
+
"AllergyTypeEnum",
|
|
275
|
+
"VaccineTypeEnum",
|
|
276
|
+
"BMIClassificationEnum",
|
|
277
|
+
]
|