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,434 @@
|
|
|
1
|
+
name: biological_colors
|
|
2
|
+
title: Biological Color Value Sets
|
|
3
|
+
description: 'Color value sets for biological traits including eye colors, hair colors, flower colors, and other phenotypic
|
|
4
|
+
color characteristics.
|
|
5
|
+
|
|
6
|
+
'
|
|
7
|
+
id: https://w3id.org/valuesets/bio/biological_colors
|
|
8
|
+
imports:
|
|
9
|
+
- linkml:types
|
|
10
|
+
prefixes:
|
|
11
|
+
linkml: https://w3id.org/linkml/
|
|
12
|
+
HEX: https://www.color-hex.com/color/
|
|
13
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
14
|
+
HP: http://purl.obolibrary.org/obo/HP_
|
|
15
|
+
TO: http://purl.obolibrary.org/obo/TO_
|
|
16
|
+
VT: http://purl.obolibrary.org/obo/VT_
|
|
17
|
+
valuesets: https://w3id.org/valuesets/
|
|
18
|
+
default_prefix: valuesets
|
|
19
|
+
slots:
|
|
20
|
+
eye_color:
|
|
21
|
+
description: Human eye color phenotypes
|
|
22
|
+
range: EyeColorEnum
|
|
23
|
+
hair_color:
|
|
24
|
+
description: Human hair color phenotypes
|
|
25
|
+
range: HairColorEnum
|
|
26
|
+
flower_color:
|
|
27
|
+
description: Common flower colors
|
|
28
|
+
range: FlowerColorEnum
|
|
29
|
+
animal_coat_color:
|
|
30
|
+
description: Animal coat/fur colors
|
|
31
|
+
range: AnimalCoatColorEnum
|
|
32
|
+
skin_tone:
|
|
33
|
+
description: Human skin tone classifications (Fitzpatrick scale based)
|
|
34
|
+
range: SkinToneEnum
|
|
35
|
+
plant_leaf_color:
|
|
36
|
+
description: Plant leaf colors (including seasonal changes)
|
|
37
|
+
range: PlantLeafColorEnum
|
|
38
|
+
enums:
|
|
39
|
+
EyeColorEnum:
|
|
40
|
+
description: Human eye color phenotypes
|
|
41
|
+
permissible_values:
|
|
42
|
+
BROWN:
|
|
43
|
+
description: Brown eyes
|
|
44
|
+
annotations:
|
|
45
|
+
hex_range: 663300-8B4513
|
|
46
|
+
prevalence: 79% worldwide
|
|
47
|
+
BLUE:
|
|
48
|
+
description: Blue eyes
|
|
49
|
+
meaning: HP:0000635
|
|
50
|
+
title: Blue irides
|
|
51
|
+
annotations:
|
|
52
|
+
hex_range: 4169E1-87CEEB
|
|
53
|
+
prevalence: 8-10% worldwide
|
|
54
|
+
GREEN:
|
|
55
|
+
description: Green eyes
|
|
56
|
+
annotations:
|
|
57
|
+
hex_range: 2E8B57-90EE90
|
|
58
|
+
prevalence: 2% worldwide
|
|
59
|
+
HAZEL:
|
|
60
|
+
description: Hazel eyes (brown-green mix)
|
|
61
|
+
annotations:
|
|
62
|
+
hex_range: 8B7355-C9A878
|
|
63
|
+
prevalence: 5% worldwide
|
|
64
|
+
AMBER:
|
|
65
|
+
description: Amber/golden eyes
|
|
66
|
+
annotations:
|
|
67
|
+
hex_range: FFBF00-FFB300
|
|
68
|
+
prevalence: rare
|
|
69
|
+
GRAY:
|
|
70
|
+
description: Gray eyes
|
|
71
|
+
meaning: HP:0007730
|
|
72
|
+
title: Iris hypopigmentation
|
|
73
|
+
annotations:
|
|
74
|
+
hex_range: 778899-C0C0C0
|
|
75
|
+
prevalence: <1% worldwide
|
|
76
|
+
HETEROCHROMIA:
|
|
77
|
+
description: Different colored eyes
|
|
78
|
+
meaning: HP:0001100
|
|
79
|
+
title: Heterochromia iridis
|
|
80
|
+
annotations:
|
|
81
|
+
note: complete or sectoral heterochromia
|
|
82
|
+
RED_PINK:
|
|
83
|
+
description: Red/pink eyes (albinism)
|
|
84
|
+
annotations:
|
|
85
|
+
condition: associated with albinism
|
|
86
|
+
VIOLET:
|
|
87
|
+
description: Violet eyes (extremely rare)
|
|
88
|
+
annotations:
|
|
89
|
+
hex_range: 8B7AB8-9370DB
|
|
90
|
+
prevalence: extremely rare
|
|
91
|
+
HairColorEnum:
|
|
92
|
+
description: Human hair color phenotypes
|
|
93
|
+
permissible_values:
|
|
94
|
+
BLACK:
|
|
95
|
+
description: Black hair
|
|
96
|
+
annotations:
|
|
97
|
+
hex: '000000'
|
|
98
|
+
prevalence: most common worldwide
|
|
99
|
+
BROWN:
|
|
100
|
+
description: Brown hair
|
|
101
|
+
annotations:
|
|
102
|
+
hex_range: 654321-8B4513
|
|
103
|
+
DARK_BROWN:
|
|
104
|
+
description: Dark brown hair
|
|
105
|
+
annotations:
|
|
106
|
+
hex: 3B2F2F
|
|
107
|
+
LIGHT_BROWN:
|
|
108
|
+
description: Light brown hair
|
|
109
|
+
annotations:
|
|
110
|
+
hex: '977961'
|
|
111
|
+
BLONDE:
|
|
112
|
+
description: Blonde/blond hair
|
|
113
|
+
meaning: HP:0002286
|
|
114
|
+
title: Fair hair
|
|
115
|
+
annotations:
|
|
116
|
+
hex_range: FAF0BE-FFF8DC
|
|
117
|
+
DARK_BLONDE:
|
|
118
|
+
description: Dark blonde hair
|
|
119
|
+
annotations:
|
|
120
|
+
hex: 9F8F71
|
|
121
|
+
LIGHT_BLONDE:
|
|
122
|
+
description: Light blonde hair
|
|
123
|
+
annotations:
|
|
124
|
+
hex: FFF8DC
|
|
125
|
+
PLATINUM_BLONDE:
|
|
126
|
+
description: Platinum blonde hair
|
|
127
|
+
annotations:
|
|
128
|
+
hex: E5E5E5
|
|
129
|
+
STRAWBERRY_BLONDE:
|
|
130
|
+
description: Strawberry blonde hair
|
|
131
|
+
annotations:
|
|
132
|
+
hex: FF9966
|
|
133
|
+
RED:
|
|
134
|
+
description: Red hair
|
|
135
|
+
meaning: HP:0002297
|
|
136
|
+
title: Red hair
|
|
137
|
+
annotations:
|
|
138
|
+
hex_range: 922724-FF4500
|
|
139
|
+
prevalence: 1-2% worldwide
|
|
140
|
+
AUBURN:
|
|
141
|
+
description: Auburn hair (reddish-brown)
|
|
142
|
+
annotations:
|
|
143
|
+
hex: A52A2A
|
|
144
|
+
GINGER:
|
|
145
|
+
description: Ginger hair (orange-red)
|
|
146
|
+
annotations:
|
|
147
|
+
hex: FF6600
|
|
148
|
+
GRAY:
|
|
149
|
+
description: Gray hair
|
|
150
|
+
meaning: HP:0002216
|
|
151
|
+
title: Premature graying of hair
|
|
152
|
+
annotations:
|
|
153
|
+
hex_range: 808080-C0C0C0
|
|
154
|
+
WHITE:
|
|
155
|
+
description: White hair
|
|
156
|
+
meaning: HP:0011364
|
|
157
|
+
title: White hair
|
|
158
|
+
annotations:
|
|
159
|
+
hex: FFFFFF
|
|
160
|
+
SILVER:
|
|
161
|
+
description: Silver hair
|
|
162
|
+
annotations:
|
|
163
|
+
hex: C0C0C0
|
|
164
|
+
FlowerColorEnum:
|
|
165
|
+
description: Common flower colors
|
|
166
|
+
permissible_values:
|
|
167
|
+
RED:
|
|
168
|
+
description: Red flowers
|
|
169
|
+
annotations:
|
|
170
|
+
hex: FF0000
|
|
171
|
+
examples: roses, tulips, poppies
|
|
172
|
+
PINK:
|
|
173
|
+
description: Pink flowers
|
|
174
|
+
annotations:
|
|
175
|
+
hex: FFC0CB
|
|
176
|
+
examples: peonies, cherry blossoms
|
|
177
|
+
ORANGE:
|
|
178
|
+
description: Orange flowers
|
|
179
|
+
annotations:
|
|
180
|
+
hex: FFA500
|
|
181
|
+
examples: marigolds, zinnias
|
|
182
|
+
YELLOW:
|
|
183
|
+
description: Yellow flowers
|
|
184
|
+
annotations:
|
|
185
|
+
hex: FFFF00
|
|
186
|
+
examples: sunflowers, daffodils
|
|
187
|
+
WHITE:
|
|
188
|
+
description: White flowers
|
|
189
|
+
annotations:
|
|
190
|
+
hex: FFFFFF
|
|
191
|
+
examples: lilies, daisies
|
|
192
|
+
PURPLE:
|
|
193
|
+
description: Purple flowers
|
|
194
|
+
annotations:
|
|
195
|
+
hex: '800080'
|
|
196
|
+
examples: lavender, violets
|
|
197
|
+
VIOLET:
|
|
198
|
+
description: Violet flowers
|
|
199
|
+
annotations:
|
|
200
|
+
hex: 7F00FF
|
|
201
|
+
examples: violets, pansies
|
|
202
|
+
BLUE:
|
|
203
|
+
description: Blue flowers
|
|
204
|
+
annotations:
|
|
205
|
+
hex: 0000FF
|
|
206
|
+
examples: forget-me-nots, cornflowers
|
|
207
|
+
LAVENDER:
|
|
208
|
+
description: Lavender flowers
|
|
209
|
+
annotations:
|
|
210
|
+
hex: E6E6FA
|
|
211
|
+
examples: lavender, wisteria
|
|
212
|
+
MAGENTA:
|
|
213
|
+
description: Magenta flowers
|
|
214
|
+
annotations:
|
|
215
|
+
hex: FF00FF
|
|
216
|
+
examples: fuchsias, bougainvillea
|
|
217
|
+
BURGUNDY:
|
|
218
|
+
description: Burgundy/deep red flowers
|
|
219
|
+
annotations:
|
|
220
|
+
hex: '800020'
|
|
221
|
+
examples: dahlias, chrysanthemums
|
|
222
|
+
CORAL:
|
|
223
|
+
description: Coral flowers
|
|
224
|
+
annotations:
|
|
225
|
+
hex: FF7F50
|
|
226
|
+
examples: coral bells, begonias
|
|
227
|
+
PEACH:
|
|
228
|
+
description: Peach flowers
|
|
229
|
+
annotations:
|
|
230
|
+
hex: FFDAB9
|
|
231
|
+
examples: roses, dahlias
|
|
232
|
+
CREAM:
|
|
233
|
+
description: Cream flowers
|
|
234
|
+
annotations:
|
|
235
|
+
hex: FFFDD0
|
|
236
|
+
examples: roses, tulips
|
|
237
|
+
BICOLOR:
|
|
238
|
+
description: Two-colored flowers
|
|
239
|
+
annotations:
|
|
240
|
+
note: flowers with two distinct colors
|
|
241
|
+
MULTICOLOR:
|
|
242
|
+
description: Multi-colored flowers
|
|
243
|
+
annotations:
|
|
244
|
+
note: flowers with more than two colors
|
|
245
|
+
AnimalCoatColorEnum:
|
|
246
|
+
description: Animal coat/fur colors
|
|
247
|
+
permissible_values:
|
|
248
|
+
BLACK:
|
|
249
|
+
description: Black coat
|
|
250
|
+
annotations:
|
|
251
|
+
hex: '000000'
|
|
252
|
+
WHITE:
|
|
253
|
+
description: White coat
|
|
254
|
+
annotations:
|
|
255
|
+
hex: FFFFFF
|
|
256
|
+
BROWN:
|
|
257
|
+
description: Brown coat
|
|
258
|
+
annotations:
|
|
259
|
+
hex: 964B00
|
|
260
|
+
TAN:
|
|
261
|
+
description: Tan coat
|
|
262
|
+
annotations:
|
|
263
|
+
hex: D2B48C
|
|
264
|
+
CREAM:
|
|
265
|
+
description: Cream coat
|
|
266
|
+
annotations:
|
|
267
|
+
hex: FFFDD0
|
|
268
|
+
GRAY:
|
|
269
|
+
description: Gray coat
|
|
270
|
+
annotations:
|
|
271
|
+
hex: '808080'
|
|
272
|
+
RED:
|
|
273
|
+
description: Red/rust coat
|
|
274
|
+
annotations:
|
|
275
|
+
hex: B22222
|
|
276
|
+
GOLDEN:
|
|
277
|
+
description: Golden coat
|
|
278
|
+
annotations:
|
|
279
|
+
hex: FFD700
|
|
280
|
+
FAWN:
|
|
281
|
+
description: Fawn coat
|
|
282
|
+
annotations:
|
|
283
|
+
hex: E5AA70
|
|
284
|
+
BRINDLE:
|
|
285
|
+
description: Brindle pattern (striped)
|
|
286
|
+
annotations:
|
|
287
|
+
pattern: striped mixture of colors
|
|
288
|
+
SPOTTED:
|
|
289
|
+
description: Spotted pattern
|
|
290
|
+
annotations:
|
|
291
|
+
pattern: spots on base color
|
|
292
|
+
MERLE:
|
|
293
|
+
description: Merle pattern (mottled)
|
|
294
|
+
annotations:
|
|
295
|
+
pattern: mottled patches
|
|
296
|
+
PIEBALD:
|
|
297
|
+
description: Piebald pattern (patches)
|
|
298
|
+
annotations:
|
|
299
|
+
pattern: irregular patches
|
|
300
|
+
CALICO:
|
|
301
|
+
description: Calico pattern (tri-color)
|
|
302
|
+
annotations:
|
|
303
|
+
pattern: tri-color patches
|
|
304
|
+
species: primarily cats
|
|
305
|
+
TABBY:
|
|
306
|
+
description: Tabby pattern (striped)
|
|
307
|
+
annotations:
|
|
308
|
+
pattern: striped or spotted
|
|
309
|
+
species: primarily cats
|
|
310
|
+
TORTOISESHELL:
|
|
311
|
+
description: Tortoiseshell pattern
|
|
312
|
+
annotations:
|
|
313
|
+
pattern: mottled orange and black
|
|
314
|
+
species: primarily cats
|
|
315
|
+
ROAN:
|
|
316
|
+
description: Roan pattern (mixed white)
|
|
317
|
+
annotations:
|
|
318
|
+
pattern: white mixed with base color
|
|
319
|
+
species: primarily horses
|
|
320
|
+
PALOMINO:
|
|
321
|
+
description: Palomino (golden with white mane)
|
|
322
|
+
annotations:
|
|
323
|
+
hex: DEC05F
|
|
324
|
+
species: horses
|
|
325
|
+
CHESTNUT:
|
|
326
|
+
description: Chestnut/sorrel
|
|
327
|
+
annotations:
|
|
328
|
+
hex: CD5C5C
|
|
329
|
+
species: horses
|
|
330
|
+
BAY:
|
|
331
|
+
description: Bay (brown with black points)
|
|
332
|
+
annotations:
|
|
333
|
+
species: horses
|
|
334
|
+
SkinToneEnum:
|
|
335
|
+
description: Human skin tone classifications (Fitzpatrick scale based)
|
|
336
|
+
permissible_values:
|
|
337
|
+
TYPE_I:
|
|
338
|
+
description: Very pale white skin
|
|
339
|
+
annotations:
|
|
340
|
+
fitzpatrick: Type I
|
|
341
|
+
hex_range: FFE0BD-FFDFC4
|
|
342
|
+
sun_reaction: always burns, never tans
|
|
343
|
+
TYPE_II:
|
|
344
|
+
description: Fair white skin
|
|
345
|
+
annotations:
|
|
346
|
+
fitzpatrick: Type II
|
|
347
|
+
hex_range: F0D5BE-E8C5A0
|
|
348
|
+
sun_reaction: burns easily, tans minimally
|
|
349
|
+
TYPE_III:
|
|
350
|
+
description: Light brown skin
|
|
351
|
+
annotations:
|
|
352
|
+
fitzpatrick: Type III
|
|
353
|
+
hex_range: DDA582-CD9766
|
|
354
|
+
sun_reaction: burns moderately, tans gradually
|
|
355
|
+
TYPE_IV:
|
|
356
|
+
description: Moderate brown skin
|
|
357
|
+
annotations:
|
|
358
|
+
fitzpatrick: Type IV
|
|
359
|
+
hex_range: B87659-A47148
|
|
360
|
+
sun_reaction: burns minimally, tans easily
|
|
361
|
+
TYPE_V:
|
|
362
|
+
description: Dark brown skin
|
|
363
|
+
annotations:
|
|
364
|
+
fitzpatrick: Type V
|
|
365
|
+
hex_range: 935D37-7C4E2A
|
|
366
|
+
sun_reaction: rarely burns, tans darkly
|
|
367
|
+
TYPE_VI:
|
|
368
|
+
description: Very dark brown to black skin
|
|
369
|
+
annotations:
|
|
370
|
+
fitzpatrick: Type VI
|
|
371
|
+
hex_range: 5C3A1E-3D2314
|
|
372
|
+
sun_reaction: never burns, always tans darkly
|
|
373
|
+
PlantLeafColorEnum:
|
|
374
|
+
description: Plant leaf colors (including seasonal changes)
|
|
375
|
+
permissible_values:
|
|
376
|
+
GREEN:
|
|
377
|
+
description: Green leaves (healthy/summer)
|
|
378
|
+
meaning: PATO:0000320
|
|
379
|
+
annotations:
|
|
380
|
+
hex_range: 228B22-90EE90
|
|
381
|
+
season: spring/summer
|
|
382
|
+
DARK_GREEN:
|
|
383
|
+
description: Dark green leaves
|
|
384
|
+
annotations:
|
|
385
|
+
hex: '006400'
|
|
386
|
+
LIGHT_GREEN:
|
|
387
|
+
description: Light green leaves
|
|
388
|
+
annotations:
|
|
389
|
+
hex: 90EE90
|
|
390
|
+
YELLOW_GREEN:
|
|
391
|
+
description: Yellow-green leaves
|
|
392
|
+
annotations:
|
|
393
|
+
hex: 9ACD32
|
|
394
|
+
condition: new growth or nutrient deficiency
|
|
395
|
+
YELLOW:
|
|
396
|
+
description: Yellow leaves (autumn or chlorosis)
|
|
397
|
+
meaning: PATO:0000324
|
|
398
|
+
annotations:
|
|
399
|
+
hex: FFD700
|
|
400
|
+
season: autumn
|
|
401
|
+
ORANGE:
|
|
402
|
+
description: Orange leaves (autumn)
|
|
403
|
+
annotations:
|
|
404
|
+
hex: FF8C00
|
|
405
|
+
season: autumn
|
|
406
|
+
RED:
|
|
407
|
+
description: Red leaves (autumn or certain species)
|
|
408
|
+
meaning: PATO:0000322
|
|
409
|
+
annotations:
|
|
410
|
+
hex: DC143C
|
|
411
|
+
season: autumn
|
|
412
|
+
PURPLE:
|
|
413
|
+
description: Purple leaves (certain species)
|
|
414
|
+
annotations:
|
|
415
|
+
hex: '800080'
|
|
416
|
+
examples: purple basil, Japanese maple
|
|
417
|
+
BRONZE:
|
|
418
|
+
description: Bronze leaves
|
|
419
|
+
annotations:
|
|
420
|
+
hex: CD7F32
|
|
421
|
+
SILVER:
|
|
422
|
+
description: Silver/gray leaves
|
|
423
|
+
annotations:
|
|
424
|
+
hex: C0C0C0
|
|
425
|
+
examples: dusty miller, artemisia
|
|
426
|
+
VARIEGATED:
|
|
427
|
+
description: Variegated leaves (multiple colors)
|
|
428
|
+
annotations:
|
|
429
|
+
pattern: mixed colors/patterns
|
|
430
|
+
BROWN:
|
|
431
|
+
description: Brown leaves (dead/dying)
|
|
432
|
+
annotations:
|
|
433
|
+
hex: 964B00
|
|
434
|
+
condition: senescent or dead
|