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,375 @@
1
+ name: safety_colors
2
+ title: Safety and Warning Color Value Sets
3
+ description: 'Color value sets for safety, warning, and signaling purposes based on international standards like ANSI, ISO,
4
+ and OSHA.
5
+
6
+ '
7
+ id: https://w3id.org/valuesets/industry/safety_colors
8
+ imports:
9
+ - linkml:types
10
+ prefixes:
11
+ linkml: https://w3id.org/linkml/
12
+ HEX: https://www.color-hex.com/color/
13
+ ISO: https://www.iso.org/standard/
14
+ ANSI: https://www.ansi.org/
15
+ OSHA: https://www.osha.gov/
16
+ valuesets: https://w3id.org/valuesets/
17
+ default_prefix: valuesets
18
+ slots:
19
+ safety_color:
20
+ description: ANSI/ISO standard safety colors
21
+ range: SafetyColorEnum
22
+ traffic_light_color:
23
+ description: Traffic signal colors (international)
24
+ range: TrafficLightColorEnum
25
+ hazmat_color:
26
+ description: Hazardous materials placarding colors (DOT/UN)
27
+ range: HazmatColorEnum
28
+ fire_safety_color:
29
+ description: Fire safety equipment and signage colors
30
+ range: FireSafetyColorEnum
31
+ maritime_signal_color:
32
+ description: Maritime signal and navigation colors
33
+ range: MaritimeSignalColorEnum
34
+ aviation_light_color:
35
+ description: Aviation lighting colors
36
+ range: AviationLightColorEnum
37
+ electrical_wire_color:
38
+ description: Electrical wire color codes (US/International)
39
+ range: ElectricalWireColorEnum
40
+ enums:
41
+ SafetyColorEnum:
42
+ description: ANSI/ISO standard safety colors
43
+ permissible_values:
44
+ SAFETY_RED:
45
+ description: Safety red - danger, stop, prohibition
46
+ meaning: HEX:C8102E
47
+ annotations:
48
+ standard: ANSI Z535.1
49
+ pantone: PMS 186 C
50
+ usage: fire equipment, stop signs, danger signs
51
+ SAFETY_ORANGE:
52
+ description: Safety orange - warning of dangerous parts
53
+ meaning: HEX:FF6900
54
+ annotations:
55
+ standard: ANSI Z535.1
56
+ pantone: PMS 151 C
57
+ usage: machine parts, exposed edges
58
+ SAFETY_YELLOW:
59
+ description: Safety yellow - caution, physical hazards
60
+ meaning: HEX:F6D04D
61
+ annotations:
62
+ standard: ANSI Z535.1
63
+ pantone: PMS 116 C
64
+ usage: caution signs, physical hazards, stumbling
65
+ SAFETY_GREEN:
66
+ description: Safety green - safety, first aid, emergency egress
67
+ meaning: HEX:00843D
68
+ annotations:
69
+ standard: ANSI Z535.1
70
+ pantone: PMS 355 C
71
+ usage: first aid, safety equipment, emergency exits
72
+ SAFETY_BLUE:
73
+ description: Safety blue - mandatory, information
74
+ meaning: HEX:005EB8
75
+ annotations:
76
+ standard: ANSI Z535.1
77
+ pantone: PMS 285 C
78
+ usage: mandatory signs, information signs
79
+ SAFETY_PURPLE:
80
+ description: Safety purple - radiation hazards
81
+ meaning: HEX:652D90
82
+ annotations:
83
+ standard: ANSI Z535.1
84
+ pantone: PMS 2685 C
85
+ usage: radiation hazards, x-ray equipment
86
+ SAFETY_BLACK:
87
+ description: Safety black - traffic/housekeeping markings
88
+ meaning: HEX:000000
89
+ annotations:
90
+ standard: ANSI Z535.1
91
+ usage: traffic control, housekeeping markers
92
+ SAFETY_WHITE:
93
+ description: Safety white - traffic/housekeeping markings
94
+ meaning: HEX:FFFFFF
95
+ annotations:
96
+ standard: ANSI Z535.1
97
+ usage: traffic lanes, housekeeping boundaries
98
+ SAFETY_GRAY:
99
+ description: Safety gray - inactive/out of service
100
+ meaning: HEX:919191
101
+ annotations:
102
+ standard: ANSI Z535.1
103
+ usage: out of service equipment
104
+ SAFETY_BROWN:
105
+ description: Safety brown - no special hazard (background)
106
+ meaning: HEX:795548
107
+ annotations:
108
+ usage: background color for signs
109
+ TrafficLightColorEnum:
110
+ description: Traffic signal colors (international)
111
+ permissible_values:
112
+ RED:
113
+ description: Red - stop
114
+ meaning: HEX:FF0000
115
+ annotations:
116
+ wavelength: 630-700 nm
117
+ meaning_universal: stop, do not proceed
118
+ AMBER:
119
+ description: Amber/yellow - caution
120
+ meaning: HEX:FFBF00
121
+ annotations:
122
+ wavelength: 590 nm
123
+ meaning_universal: prepare to stop, caution
124
+ GREEN:
125
+ description: Green - go
126
+ meaning: HEX:00FF00
127
+ annotations:
128
+ wavelength: 510-570 nm
129
+ meaning_universal: proceed, safe to go
130
+ FLASHING_RED:
131
+ description: Flashing red - stop then proceed
132
+ meaning: HEX:FF0000
133
+ annotations:
134
+ pattern: flashing
135
+ meaning_universal: stop, then proceed when safe
136
+ FLASHING_AMBER:
137
+ description: Flashing amber - proceed with caution
138
+ meaning: HEX:FFBF00
139
+ annotations:
140
+ pattern: flashing
141
+ meaning_universal: proceed with caution
142
+ WHITE:
143
+ description: White - special situations (transit)
144
+ meaning: HEX:FFFFFF
145
+ annotations:
146
+ usage: transit priority signals
147
+ HazmatColorEnum:
148
+ description: Hazardous materials placarding colors (DOT/UN)
149
+ permissible_values:
150
+ ORANGE:
151
+ description: Orange - explosives (Class 1)
152
+ meaning: HEX:FF6600
153
+ annotations:
154
+ class: '1'
155
+ hazard: explosives
156
+ RED:
157
+ description: Red - flammable (Classes 2.1, 3)
158
+ meaning: HEX:FF0000
159
+ annotations:
160
+ class: 2.1, 3
161
+ hazard: flammable gas, flammable liquid
162
+ GREEN:
163
+ description: Green - non-flammable gas (Class 2.2)
164
+ meaning: HEX:00FF00
165
+ annotations:
166
+ class: '2.2'
167
+ hazard: non-flammable gas
168
+ YELLOW:
169
+ description: Yellow - oxidizer, organic peroxide (Classes 5.1, 5.2)
170
+ meaning: HEX:FFFF00
171
+ annotations:
172
+ class: 5.1, 5.2
173
+ hazard: oxidizing substances, organic peroxides
174
+ WHITE:
175
+ description: White - poison/toxic (Class 6.1)
176
+ meaning: HEX:FFFFFF
177
+ annotations:
178
+ class: '6.1'
179
+ hazard: toxic/poisonous substances
180
+ BLACK_WHITE_STRIPES:
181
+ description: Black and white stripes - corrosive (Class 8)
182
+ annotations:
183
+ class: '8'
184
+ hazard: corrosive substances
185
+ pattern: black and white vertical stripes
186
+ BLUE:
187
+ description: Blue - dangerous when wet (Class 4.3)
188
+ meaning: HEX:0000FF
189
+ annotations:
190
+ class: '4.3'
191
+ hazard: dangerous when wet
192
+ WHITE_RED_STRIPES:
193
+ description: White with red stripes - flammable solid (Class 4.1)
194
+ annotations:
195
+ class: '4.1'
196
+ hazard: flammable solid
197
+ pattern: white with red vertical stripes
198
+ FireSafetyColorEnum:
199
+ description: Fire safety equipment and signage colors
200
+ permissible_values:
201
+ FIRE_RED:
202
+ description: Fire red - fire equipment
203
+ meaning: HEX:C8102E
204
+ annotations:
205
+ usage: fire extinguishers, alarms, hose reels
206
+ standard: ISO 7010
207
+ PHOTOLUMINESCENT_GREEN:
208
+ description: Photoluminescent green - emergency escape
209
+ meaning: HEX:7FFF00
210
+ annotations:
211
+ usage: emergency exit signs, escape routes
212
+ property: glows in dark
213
+ YELLOW_BLACK_STRIPES:
214
+ description: Yellow with black stripes - fire hazard area
215
+ annotations:
216
+ pattern: diagonal stripes
217
+ usage: fire hazard zones
218
+ WHITE:
219
+ description: White - fire protection water
220
+ meaning: HEX:FFFFFF
221
+ annotations:
222
+ usage: water for fire protection
223
+ BLUE:
224
+ description: Blue - mandatory fire safety
225
+ meaning: HEX:005EB8
226
+ annotations:
227
+ usage: mandatory fire safety equipment
228
+ MaritimeSignalColorEnum:
229
+ description: Maritime signal and navigation colors
230
+ permissible_values:
231
+ PORT_RED:
232
+ description: Port (left) red light
233
+ meaning: HEX:FF0000
234
+ annotations:
235
+ side: port (left)
236
+ wavelength: 625-740 nm
237
+ STARBOARD_GREEN:
238
+ description: Starboard (right) green light
239
+ meaning: HEX:00FF00
240
+ annotations:
241
+ side: starboard (right)
242
+ wavelength: 500-565 nm
243
+ STERN_WHITE:
244
+ description: Stern white light
245
+ meaning: HEX:FFFFFF
246
+ annotations:
247
+ position: stern (rear)
248
+ MASTHEAD_WHITE:
249
+ description: Masthead white light
250
+ meaning: HEX:FFFFFF
251
+ annotations:
252
+ position: masthead (forward)
253
+ ALL_ROUND_WHITE:
254
+ description: All-round white light
255
+ meaning: HEX:FFFFFF
256
+ annotations:
257
+ visibility: 360 degrees
258
+ YELLOW_TOWING:
259
+ description: Yellow towing light
260
+ meaning: HEX:FFFF00
261
+ annotations:
262
+ usage: vessel towing
263
+ BLUE_FLASHING:
264
+ description: Blue flashing light
265
+ meaning: HEX:0000FF
266
+ annotations:
267
+ usage: law enforcement vessels
268
+ pattern: flashing
269
+ AviationLightColorEnum:
270
+ description: Aviation lighting colors
271
+ permissible_values:
272
+ RED_BEACON:
273
+ description: Red obstruction light
274
+ meaning: HEX:FF0000
275
+ annotations:
276
+ usage: obstruction marking
277
+ intensity: high intensity
278
+ WHITE_STROBE:
279
+ description: White anti-collision strobe
280
+ meaning: HEX:FFFFFF
281
+ annotations:
282
+ usage: anti-collision
283
+ pattern: strobe
284
+ GREEN_NAVIGATION:
285
+ description: Green navigation light (right wing)
286
+ meaning: HEX:00FF00
287
+ annotations:
288
+ position: right wing tip
289
+ RED_NAVIGATION:
290
+ description: Red navigation light (left wing)
291
+ meaning: HEX:FF0000
292
+ annotations:
293
+ position: left wing tip
294
+ WHITE_NAVIGATION:
295
+ description: White navigation light (tail)
296
+ meaning: HEX:FFFFFF
297
+ annotations:
298
+ position: tail
299
+ BLUE_TAXIWAY:
300
+ description: Blue taxiway edge lights
301
+ meaning: HEX:0000FF
302
+ annotations:
303
+ usage: taxiway edges
304
+ YELLOW_RUNWAY:
305
+ description: Yellow runway markings
306
+ meaning: HEX:FFFF00
307
+ annotations:
308
+ usage: runway centerline, hold positions
309
+ GREEN_THRESHOLD:
310
+ description: Green runway threshold lights
311
+ meaning: HEX:00FF00
312
+ annotations:
313
+ usage: runway threshold
314
+ RED_RUNWAY_END:
315
+ description: Red runway end lights
316
+ meaning: HEX:FF0000
317
+ annotations:
318
+ usage: runway end
319
+ ElectricalWireColorEnum:
320
+ description: Electrical wire color codes (US/International)
321
+ permissible_values:
322
+ BLACK_HOT:
323
+ description: Black - hot/live wire (US)
324
+ meaning: HEX:000000
325
+ annotations:
326
+ voltage: 120/240V
327
+ region: North America
328
+ RED_HOT:
329
+ description: Red - hot/live wire (US secondary)
330
+ meaning: HEX:FF0000
331
+ annotations:
332
+ voltage: 120/240V
333
+ region: North America
334
+ BLUE_HOT:
335
+ description: Blue - hot/live wire (US tertiary)
336
+ meaning: HEX:0000FF
337
+ annotations:
338
+ voltage: 120/240V
339
+ region: North America
340
+ WHITE_NEUTRAL:
341
+ description: White - neutral wire (US)
342
+ meaning: HEX:FFFFFF
343
+ annotations:
344
+ function: neutral
345
+ region: North America
346
+ GREEN_GROUND:
347
+ description: Green - ground/earth wire
348
+ meaning: HEX:00FF00
349
+ annotations:
350
+ function: ground/earth
351
+ region: universal
352
+ GREEN_YELLOW_GROUND:
353
+ description: Green with yellow stripe - ground/earth (International)
354
+ annotations:
355
+ function: ground/earth
356
+ region: IEC standard
357
+ pattern: green with yellow stripe
358
+ BROWN_LIVE:
359
+ description: Brown - live wire (EU/IEC)
360
+ meaning: HEX:964B00
361
+ annotations:
362
+ voltage: 230V
363
+ region: Europe/IEC
364
+ BLUE_NEUTRAL:
365
+ description: Blue - neutral wire (EU/IEC)
366
+ meaning: HEX:0000FF
367
+ annotations:
368
+ function: neutral
369
+ region: Europe/IEC
370
+ GRAY_NEUTRAL:
371
+ description: Gray - neutral wire (alternative)
372
+ meaning: HEX:808080
373
+ annotations:
374
+ function: neutral
375
+ region: some installations
@@ -0,0 +1,64 @@
1
+ name: valuesets-investigation
2
+ title: valuesets-investigation
3
+ description: 'Common Data Model Elements: Human and investigation activities'
4
+ id: https://w3id.org/valuesets/investigation
5
+ prefixes:
6
+ # linkml_common: https://w3id.org/valuesets/
7
+ linkml: https://w3id.org/linkml/
8
+ biolink: https://w3id.org/biolink/
9
+ schema: http://schema.org/
10
+ PATO: http://purl.obolibrary.org/obo/PATO_
11
+ OBI: http://purl.obolibrary.org/obo/OBI_
12
+ fhir: http://hl7.org/fhir/
13
+ prov: http://www.w3.org/ns/prov#
14
+ dcterms: http://purl.org/dc/terms/
15
+ fibo.commons.PartiesAndSituations: https://spec.edmcouncil.org/fibo/ontology/FBC/ommons/PartiesAndSituations/
16
+ valuesets: https://w3id.org/valuesets/
17
+ default_prefix: valuesets
18
+ slots:
19
+ case_or_control:
20
+ description: The case or control classification
21
+ range: CaseOrControlEnum
22
+ study_design:
23
+ description: The study design classification
24
+ range: StudyDesignEnum
25
+ investigative_protocol:
26
+ description: The investigative protocol classification
27
+ range: InvestigativeProtocolEnum
28
+ sample_processing:
29
+ description: The sample processing classification
30
+ range: SampleProcessingEnum
31
+ enums:
32
+ CaseOrControlEnum:
33
+ permissible_values:
34
+ CASE:
35
+ title: case role in case-control study
36
+ meaning: OBI:0002492
37
+ CONTROL:
38
+ title: control role in case-control study
39
+ meaning: OBI:0002493
40
+ StudyDesignEnum:
41
+ reachable_from:
42
+ source_nodes:
43
+ - OBI:0500000
44
+ is_direct: false
45
+ relationship_types:
46
+ - rdfs:subClassOf
47
+ InvestigativeProtocolEnum:
48
+ reachable_from:
49
+ source_nodes:
50
+ - OBI:0000272
51
+ is_direct: false
52
+ relationship_types:
53
+ - rdfs:subClassOf
54
+ SampleProcessingEnum:
55
+ reachable_from:
56
+ source_nodes:
57
+ - OBI:0000094
58
+ is_direct: false
59
+ relationship_types:
60
+ - rdfs:subClassOf
61
+ license: MIT
62
+ see_also:
63
+ - https://linkml.github.io/valuesets
64
+ default_range: string
@@ -0,0 +1,193 @@
1
+ name: characterization_methods
2
+ id: https://w3id.org/linkml/valuesets/materials_science/characterization_methods
3
+ prefixes:
4
+ OBI: http://purl.obolibrary.org/obo/OBI_
5
+ CHMO: http://purl.obolibrary.org/obo/CHMO_
6
+ # linkml_common: https://w3id.org/linkml-common/
7
+ valuesets: https://w3id.org/valuesets/
8
+ default_prefix: valuesets
9
+ slots:
10
+ microscopy_method:
11
+ description: Microscopy techniques for material characterization
12
+ range: MicroscopyMethodEnum
13
+ spectroscopy_method:
14
+ description: Spectroscopy techniques for material analysis
15
+ range: SpectroscopyMethodEnum
16
+ thermal_analysis_method:
17
+ description: Thermal analysis techniques
18
+ range: ThermalAnalysisMethodEnum
19
+ mechanical_testing_method:
20
+ description: Mechanical testing methods
21
+ range: MechanicalTestingMethodEnum
22
+ enums:
23
+ MicroscopyMethodEnum:
24
+ description: Microscopy techniques for material characterization
25
+ permissible_values:
26
+ SEM:
27
+ description: Scanning Electron Microscopy
28
+ title: scanning electron microscopy
29
+ meaning: CHMO:0000073
30
+ aliases:
31
+ - Scanning Electron Microscopy
32
+ - SEM
33
+ TEM:
34
+ description: Transmission Electron Microscopy
35
+ title: transmission electron microscopy
36
+ meaning: CHMO:0000080
37
+ aliases:
38
+ - Transmission Electron Microscopy
39
+ - TEM
40
+ STEM:
41
+ description: Scanning Transmission Electron Microscopy
42
+ title: STEM
43
+ aliases:
44
+ - Scanning Transmission Electron Microscopy
45
+ AFM:
46
+ description: Atomic Force Microscopy
47
+ title: atomic force microscopy
48
+ meaning: CHMO:0000113
49
+ aliases:
50
+ - Atomic Force Microscopy
51
+ - AFM
52
+ STM:
53
+ description: Scanning Tunneling Microscopy
54
+ title: scanning tunnelling microscopy
55
+ meaning: CHMO:0000132
56
+ aliases:
57
+ - Scanning Tunneling Microscopy
58
+ - STM
59
+ OPTICAL:
60
+ description: Optical/Light Microscopy
61
+ title: light microscopy assay
62
+ meaning: CHMO:0000102
63
+ aliases:
64
+ - Light Microscopy
65
+ - Optical Microscopy
66
+ - OPTICAL
67
+ CONFOCAL:
68
+ description: Confocal Laser Scanning Microscopy
69
+ title: confocal fluorescence microscopy assay
70
+ meaning: CHMO:0000089
71
+ aliases:
72
+ - CLSM
73
+ - CONFOCAL
74
+ - Confocal
75
+ SpectroscopyMethodEnum:
76
+ description: Spectroscopy techniques for material analysis
77
+ permissible_values:
78
+ XRD:
79
+ description: X-ray Diffraction
80
+ title: XRD
81
+ meaning: CHMO:0000156
82
+ aliases:
83
+ - X-ray Diffraction
84
+ XPS:
85
+ description: X-ray Photoelectron Spectroscopy
86
+ title: XPS
87
+ meaning: CHMO:0000404
88
+ aliases:
89
+ - ESCA
90
+ - X-ray Photoelectron Spectroscopy
91
+ EDS:
92
+ description: Energy Dispersive X-ray Spectroscopy
93
+ title: energy-dispersive X-ray emission spectroscopy
94
+ meaning: CHMO:0000309
95
+ aliases:
96
+ - EDX
97
+ - EDXS
98
+ - EDS
99
+ FTIR:
100
+ description: Fourier Transform Infrared Spectroscopy
101
+ title: Fourier transform infrared spectroscopy
102
+ meaning: CHMO:0000636
103
+ aliases:
104
+ - FT-IR
105
+ - FTIR
106
+ RAMAN:
107
+ description: Raman Spectroscopy
108
+ title: Raman
109
+ meaning: CHMO:0000656
110
+ aliases:
111
+ - Raman Spectroscopy
112
+ UV_VIS:
113
+ description: Ultraviolet-Visible Spectroscopy
114
+ title: ultraviolet-visible spectrophotometry
115
+ meaning: CHMO:0000292
116
+ aliases:
117
+ - UV-Visible
118
+ - UV-Vis
119
+ - UV_VIS
120
+ NMR:
121
+ description: Nuclear Magnetic Resonance Spectroscopy
122
+ title: nuclear magnetic resonance spectroscopy
123
+ meaning: CHMO:0000591
124
+ aliases:
125
+ - Nuclear Magnetic Resonance
126
+ - NMR
127
+ XRF:
128
+ description: X-ray Fluorescence Spectroscopy
129
+ title: X-ray emission spectroscopy
130
+ meaning: CHMO:0000307
131
+ aliases:
132
+ - X-ray Fluorescence
133
+ - XRF
134
+ ThermalAnalysisMethodEnum:
135
+ description: Thermal analysis techniques
136
+ permissible_values:
137
+ DSC:
138
+ description: Differential Scanning Calorimetry
139
+ title: DSC
140
+ meaning: CHMO:0000684
141
+ aliases:
142
+ - Differential Scanning Calorimetry
143
+ TGA:
144
+ description: Thermogravimetric Analysis
145
+ title: thermogravimetry
146
+ meaning: CHMO:0000690
147
+ aliases:
148
+ - Thermogravimetric Analysis
149
+ - TGA
150
+ DTA:
151
+ description: Differential Thermal Analysis
152
+ title: DTA
153
+ meaning: CHMO:0000687
154
+ aliases:
155
+ - Differential Thermal Analysis
156
+ TMA:
157
+ description: Thermomechanical Analysis
158
+ title: TMA
159
+ aliases:
160
+ - Thermomechanical Analysis
161
+ DMTA:
162
+ description: Dynamic Mechanical Thermal Analysis
163
+ title: DMTA
164
+ aliases:
165
+ - DMA
166
+ - Dynamic Mechanical Analysis
167
+ MechanicalTestingMethodEnum:
168
+ description: Mechanical testing methods
169
+ permissible_values:
170
+ TENSILE:
171
+ description: Tensile strength testing
172
+ title: Tensile Test
173
+ COMPRESSION:
174
+ description: Compression strength testing
175
+ title: Compression Test
176
+ HARDNESS:
177
+ description: Hardness testing (Vickers, Rockwell, Brinell)
178
+ title: Hardness Test
179
+ IMPACT:
180
+ description: Impact resistance testing (Charpy, Izod)
181
+ title: Impact Test
182
+ FATIGUE:
183
+ description: Fatigue testing under cyclic loading
184
+ title: Fatigue Test
185
+ CREEP:
186
+ description: Creep testing under sustained load
187
+ title: Creep Test
188
+ FRACTURE_TOUGHNESS:
189
+ description: Fracture toughness testing
190
+ title: Fracture Toughness
191
+ NANOINDENTATION:
192
+ description: Nanoindentation for nanoscale mechanical properties
193
+ title: Nanoindentation