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,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