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,610 @@
1
+ name: clinical
2
+ title: Clinical and Medical Value Sets
3
+ description: 'Value sets for clinical and medical domains including blood types, anatomical systems, medical specialties,
4
+ drug routes, and diagnostic categories.
5
+
6
+ '
7
+ id: https://w3id.org/valuesets/medical/clinical
8
+ imports:
9
+ - linkml:types
10
+ prefixes:
11
+ linkml: https://w3id.org/linkml/
12
+ NCIT: http://purl.obolibrary.org/obo/NCIT_
13
+ UBERON: http://purl.obolibrary.org/obo/UBERON_
14
+ HP: http://purl.obolibrary.org/obo/HP_
15
+ DOID: http://purl.obolibrary.org/obo/DOID_
16
+ CHEBI: http://purl.obolibrary.org/obo/CHEBI_
17
+ SNOMED: http://snomed.info/id/
18
+ LOINC: http://loinc.org/
19
+ ICD10: http://purl.bioontology.org/ontology/ICD10/
20
+ RxNorm: http://purl.bioontology.org/ontology/RXNORM/
21
+ valuesets: https://w3id.org/valuesets/
22
+ default_prefix: valuesets
23
+ slots:
24
+ blood_type:
25
+ description: ABO and Rh blood group classifications
26
+ range: BloodTypeEnum
27
+ anatomical_system:
28
+ description: Major anatomical systems of the body
29
+ range: AnatomicalSystemEnum
30
+ medical_specialty:
31
+ description: The medical specialty classification
32
+ range: MedicalSpecialtyEnum
33
+ drug_route:
34
+ description: The drug route classification
35
+ range: DrugRouteEnum
36
+ vital_sign:
37
+ description: The vital sign classification
38
+ range: VitalSignEnum
39
+ diagnostic_test_type:
40
+ description: The diagnostic test type classification
41
+ range: DiagnosticTestTypeEnum
42
+ symptom_severity:
43
+ description: The symptom severity classification
44
+ range: SymptomSeverityEnum
45
+ allergy_type:
46
+ description: The allergy type classification
47
+ range: AllergyTypeEnum
48
+ vaccine_type:
49
+ description: The vaccine type classification
50
+ range: VaccineTypeEnum
51
+ bmi_classification:
52
+ description: The bmi classification classification
53
+ range: BMIClassificationEnum
54
+ enums:
55
+ BloodTypeEnum:
56
+ description: ABO and Rh blood group classifications
57
+ permissible_values:
58
+ A_POSITIVE:
59
+ description: Blood type A, Rh positive
60
+ meaning: SNOMED:278149003
61
+ annotations:
62
+ abo: A
63
+ rh: positive
64
+ can_receive: A+, A-, O+, O-
65
+ can_donate: A+, AB+
66
+ A_NEGATIVE:
67
+ description: Blood type A, Rh negative
68
+ meaning: SNOMED:278152006
69
+ annotations:
70
+ abo: A
71
+ rh: negative
72
+ can_receive: A-, O-
73
+ can_donate: A+, A-, AB+, AB-
74
+ B_POSITIVE:
75
+ description: Blood type B, Rh positive
76
+ meaning: SNOMED:278150003
77
+ annotations:
78
+ abo: B
79
+ rh: positive
80
+ can_receive: B+, B-, O+, O-
81
+ can_donate: B+, AB+
82
+ B_NEGATIVE:
83
+ description: Blood type B, Rh negative
84
+ meaning: SNOMED:278153001
85
+ annotations:
86
+ abo: B
87
+ rh: negative
88
+ can_receive: B-, O-
89
+ can_donate: B+, B-, AB+, AB-
90
+ AB_POSITIVE:
91
+ description: Blood type AB, Rh positive (universal recipient)
92
+ meaning: SNOMED:278151004
93
+ annotations:
94
+ abo: AB
95
+ rh: positive
96
+ can_receive: all types
97
+ can_donate: AB+
98
+ special: universal recipient
99
+ AB_NEGATIVE:
100
+ description: Blood type AB, Rh negative
101
+ meaning: SNOMED:278154007
102
+ annotations:
103
+ abo: AB
104
+ rh: negative
105
+ can_receive: A-, B-, AB-, O-
106
+ can_donate: AB+, AB-
107
+ O_POSITIVE:
108
+ description: Blood type O, Rh positive
109
+ meaning: SNOMED:278147001
110
+ annotations:
111
+ abo: O
112
+ rh: positive
113
+ can_receive: O+, O-
114
+ can_donate: A+, B+, AB+, O+
115
+ O_NEGATIVE:
116
+ description: Blood type O, Rh negative (universal donor)
117
+ meaning: SNOMED:278148006
118
+ annotations:
119
+ abo: O
120
+ rh: negative
121
+ can_receive: O-
122
+ can_donate: all types
123
+ special: universal donor
124
+ AnatomicalSystemEnum:
125
+ description: Major anatomical systems of the body
126
+ permissible_values:
127
+ CARDIOVASCULAR:
128
+ title: Heart and blood vessels
129
+ aliases:
130
+ - cardiovascular system
131
+ meaning: UBERON:0004535
132
+ annotations:
133
+ components: heart, arteries, veins, capillaries
134
+ RESPIRATORY:
135
+ title: Lungs and airways
136
+ aliases:
137
+ - respiratory system
138
+ meaning: UBERON:0001004
139
+ annotations:
140
+ components: lungs, trachea, bronchi, diaphragm
141
+ NERVOUS:
142
+ title: Brain, spinal cord, and nerves
143
+ aliases:
144
+ - nervous system
145
+ meaning: UBERON:0001016
146
+ annotations:
147
+ components: brain, spinal cord, nerves
148
+ DIGESTIVE:
149
+ title: GI tract and accessory organs
150
+ aliases:
151
+ - digestive system
152
+ meaning: UBERON:0001007
153
+ annotations:
154
+ components: mouth, esophagus, stomach, intestines, liver, pancreas
155
+ MUSCULOSKELETAL:
156
+ title: Bones, muscles, and connective tissue
157
+ aliases:
158
+ - musculoskeletal system
159
+ meaning: UBERON:0002204
160
+ annotations:
161
+ components: bones, muscles, tendons, ligaments, cartilage
162
+ INTEGUMENTARY:
163
+ title: Skin and related structures
164
+ aliases:
165
+ - integumental system
166
+ meaning: UBERON:0002416
167
+ annotations:
168
+ components: skin, hair, nails, glands
169
+ ENDOCRINE:
170
+ title: Hormone-producing glands
171
+ aliases:
172
+ - endocrine system
173
+ meaning: UBERON:0000949
174
+ annotations:
175
+ components: pituitary, thyroid, adrenals, pancreas
176
+ URINARY:
177
+ title: Kidneys and urinary tract
178
+ aliases:
179
+ - renal system
180
+ meaning: UBERON:0001008
181
+ annotations:
182
+ components: kidneys, ureters, bladder, urethra
183
+ REPRODUCTIVE:
184
+ title: Reproductive organs
185
+ aliases:
186
+ - reproductive system
187
+ meaning: UBERON:0000990
188
+ annotations:
189
+ components: gonads, ducts, external genitalia
190
+ IMMUNE:
191
+ title: Immune and lymphatic system
192
+ aliases:
193
+ - immune system
194
+ meaning: UBERON:0002405
195
+ annotations:
196
+ components: lymph nodes, spleen, thymus, bone marrow
197
+ HEMATOLOGIC:
198
+ title: Blood and blood-forming organs
199
+ aliases:
200
+ - hematopoietic system
201
+ meaning: UBERON:0002390
202
+ annotations:
203
+ components: blood, bone marrow, spleen
204
+ MedicalSpecialtyEnum:
205
+ title: Medical specialties and subspecialties
206
+ permissible_values:
207
+ ANESTHESIOLOGY:
208
+ title: Anesthesia and perioperative medicine
209
+ CARDIOLOGY:
210
+ title: Heart and cardiovascular diseases
211
+ DERMATOLOGY:
212
+ title: Skin diseases
213
+ EMERGENCY_MEDICINE:
214
+ title: Emergency and acute care
215
+ ENDOCRINOLOGY:
216
+ title: Hormonal and metabolic disorders
217
+ FAMILY_MEDICINE:
218
+ title: Primary care for all ages
219
+ GASTROENTEROLOGY:
220
+ title: Digestive system disorders
221
+ HEMATOLOGY:
222
+ title: Blood disorders
223
+ INFECTIOUS_DISEASE:
224
+ title: Infectious diseases
225
+ INTERNAL_MEDICINE:
226
+ title: Adult internal medicine
227
+ NEPHROLOGY:
228
+ title: Kidney diseases
229
+ NEUROLOGY:
230
+ title: Nervous system disorders
231
+ OBSTETRICS_GYNECOLOGY:
232
+ title: Women's health and childbirth
233
+ ONCOLOGY:
234
+ title: Cancer treatment
235
+ OPHTHALMOLOGY:
236
+ title: Eye diseases
237
+ ORTHOPEDICS:
238
+ title: Musculoskeletal disorders
239
+ OTOLARYNGOLOGY:
240
+ title: Ear, nose, and throat
241
+ PATHOLOGY:
242
+ title: Disease diagnosis through lab analysis
243
+ PEDIATRICS:
244
+ title: Children's health
245
+ PSYCHIATRY:
246
+ title: Mental health disorders
247
+ PULMONOLOGY:
248
+ title: Lung and respiratory diseases
249
+ RADIOLOGY:
250
+ title: Medical imaging
251
+ RHEUMATOLOGY:
252
+ title: Joint and autoimmune diseases
253
+ SURGERY:
254
+ title: Surgical procedures
255
+ UROLOGY:
256
+ title: Urinary and male reproductive system
257
+ DrugRouteEnum:
258
+ title: Routes of drug administration
259
+ permissible_values:
260
+ ORAL:
261
+ title: By mouth
262
+ aliases:
263
+ - Oral Route of Administration
264
+ meaning: NCIT:C38288
265
+ annotations:
266
+ abbreviation: PO
267
+ absorption: GI tract
268
+ INTRAVENOUS:
269
+ title: Into a vein
270
+ aliases:
271
+ - Intravenous Route of Administration
272
+ meaning: NCIT:C38276
273
+ annotations:
274
+ abbreviation: IV
275
+ onset: immediate
276
+ INTRAMUSCULAR:
277
+ title: Into muscle
278
+ aliases:
279
+ - Intramuscular Route of Administration
280
+ meaning: NCIT:C28161
281
+ annotations:
282
+ abbreviation: IM
283
+ sites: deltoid, gluteus, vastus lateralis
284
+ SUBCUTANEOUS:
285
+ title: Under the skin
286
+ aliases:
287
+ - Subcutaneous Route of Administration
288
+ meaning: NCIT:C38299
289
+ annotations:
290
+ abbreviation: SC, SubQ
291
+ absorption: slow
292
+ TOPICAL:
293
+ title: On the skin surface
294
+ aliases:
295
+ - Topical Route of Administration
296
+ meaning: NCIT:C38304
297
+ annotations:
298
+ forms: cream, ointment, gel
299
+ INHALATION:
300
+ title: By breathing in
301
+ aliases:
302
+ - Inhalation Route of Administration
303
+ meaning: NCIT:C38216
304
+ annotations:
305
+ devices: inhaler, nebulizer
306
+ RECTAL:
307
+ title: Into the rectum
308
+ aliases:
309
+ - Rectal Route of Administration
310
+ meaning: NCIT:C38295
311
+ annotations:
312
+ forms: suppository, enema
313
+ INTRANASAL:
314
+ title: Into the nose
315
+ aliases:
316
+ - Nasal Route of Administration
317
+ meaning: NCIT:C38284
318
+ annotations:
319
+ forms: spray, drops
320
+ TRANSDERMAL:
321
+ title: Through the skin
322
+ aliases:
323
+ - Transdermal Route of Administration
324
+ meaning: NCIT:C38305
325
+ annotations:
326
+ forms: patch
327
+ SUBLINGUAL:
328
+ title: Under the tongue
329
+ aliases:
330
+ - Sublingual Route of Administration
331
+ meaning: NCIT:C38300
332
+ annotations:
333
+ absorption: rapid
334
+ EPIDURAL:
335
+ title: Into epidural space
336
+ aliases:
337
+ - Intraepidermal Route of Administration
338
+ meaning: NCIT:C38243
339
+ annotations:
340
+ use: anesthesia, analgesia
341
+ INTRATHECAL:
342
+ title: Into spinal fluid
343
+ aliases:
344
+ - Intraventricular Route of Administration
345
+ meaning: NCIT:C38277
346
+ annotations:
347
+ use: CNS drugs
348
+ OPHTHALMIC:
349
+ title: Into the eye
350
+ aliases:
351
+ - Ophthalmic Route of Administration
352
+ meaning: NCIT:C38287
353
+ annotations:
354
+ forms: drops, ointment
355
+ OTIC:
356
+ title: Into the ear
357
+ aliases:
358
+ - Auricular Route of Administration
359
+ meaning: NCIT:C38192
360
+ annotations:
361
+ forms: drops
362
+ VitalSignEnum:
363
+ title: Standard vital signs
364
+ permissible_values:
365
+ HEART_RATE:
366
+ title: Heart beats per minute
367
+ meaning: LOINC:8867-4
368
+ annotations:
369
+ normal_range: 60-100 bpm
370
+ units: beats/min
371
+ BLOOD_PRESSURE_SYSTOLIC:
372
+ title: Systolic blood pressure
373
+ meaning: LOINC:8480-6
374
+ annotations:
375
+ normal_range: <120 mmHg
376
+ units: mmHg
377
+ BLOOD_PRESSURE_DIASTOLIC:
378
+ title: Diastolic blood pressure
379
+ meaning: LOINC:8462-4
380
+ annotations:
381
+ normal_range: <80 mmHg
382
+ units: mmHg
383
+ RESPIRATORY_RATE:
384
+ title: Breaths per minute
385
+ meaning: LOINC:9279-1
386
+ annotations:
387
+ normal_range: 12-20 breaths/min
388
+ units: breaths/min
389
+ TEMPERATURE:
390
+ title: Body temperature
391
+ meaning: LOINC:8310-5
392
+ annotations:
393
+ normal_range: 36.5-37.5°C
394
+ units: °C or °F
395
+ OXYGEN_SATURATION:
396
+ title: Blood oxygen saturation
397
+ meaning: LOINC:2708-6
398
+ annotations:
399
+ normal_range: 95-100%
400
+ units: '%'
401
+ PAIN_SCALE:
402
+ title: Pain level (0-10)
403
+ meaning: LOINC:38208-5
404
+ annotations:
405
+ scale: 0-10
406
+ type: subjective
407
+ DiagnosticTestTypeEnum:
408
+ title: Types of diagnostic tests
409
+ permissible_values:
410
+ BLOOD_TEST:
411
+ title: Blood sample analysis
412
+ aliases:
413
+ - Biopsy Procedure
414
+ meaning: NCIT:C15189
415
+ annotations:
416
+ samples: serum, plasma, whole blood
417
+ URINE_TEST:
418
+ title: Urine sample analysis
419
+ aliases:
420
+ - Tissue Factor
421
+ annotations:
422
+ types: urinalysis, culture, drug screen
423
+ IMAGING_XRAY:
424
+ title: X-ray imaging
425
+ aliases:
426
+ - X-Ray
427
+ meaning: NCIT:C17262
428
+ annotations:
429
+ radiation: 'yes'
430
+ IMAGING_CT:
431
+ title: Computed tomography scan
432
+ aliases:
433
+ - Computed Tomography
434
+ meaning: NCIT:C17204
435
+ annotations:
436
+ radiation: 'yes'
437
+ IMAGING_MRI:
438
+ title: Magnetic resonance imaging
439
+ aliases:
440
+ - Magnetic Resonance Imaging
441
+ meaning: NCIT:C16809
442
+ annotations:
443
+ radiation: 'no'
444
+ IMAGING_ULTRASOUND:
445
+ title: Ultrasound imaging
446
+ aliases:
447
+ - Ultrasound Imaging
448
+ meaning: NCIT:C17230
449
+ annotations:
450
+ radiation: 'no'
451
+ IMAGING_PET:
452
+ title: Positron emission tomography
453
+ aliases:
454
+ - Positron Emission Tomography
455
+ meaning: NCIT:C17007
456
+ annotations:
457
+ uses: radiotracer
458
+ ECG:
459
+ title: Electrocardiogram
460
+ aliases:
461
+ - Electroencephalography
462
+ meaning: NCIT:C38054
463
+ annotations:
464
+ measures: heart electrical activity
465
+ EEG:
466
+ title: Electroencephalogram
467
+ aliases:
468
+ - Djibouti
469
+ annotations:
470
+ measures: brain electrical activity
471
+ BIOPSY:
472
+ title: Tissue sample analysis
473
+ aliases:
474
+ - Biopsy Procedure
475
+ meaning: NCIT:C15189
476
+ annotations:
477
+ invasive: 'yes'
478
+ ENDOSCOPY:
479
+ title: Internal visualization
480
+ aliases:
481
+ - Endoscopic Procedure
482
+ meaning: NCIT:C16546
483
+ annotations:
484
+ types: colonoscopy, gastroscopy, bronchoscopy
485
+ GENETIC_TEST:
486
+ title: DNA/RNA analysis
487
+ aliases:
488
+ - Genetic Testing
489
+ meaning: NCIT:C15709
490
+ annotations:
491
+ types: karyotype, sequencing, PCR
492
+ SymptomSeverityEnum:
493
+ title: Severity levels for symptoms
494
+ permissible_values:
495
+ ABSENT:
496
+ title: No symptoms
497
+ aliases:
498
+ - Blood group B
499
+ annotations:
500
+ grade: '0'
501
+ MILD:
502
+ title: Mild symptoms, minimal impact
503
+ meaning: HP:0012825
504
+ annotations:
505
+ grade: '1'
506
+ impact: minimal daily activity limitation
507
+ MODERATE:
508
+ title: Moderate symptoms, some limitation
509
+ meaning: HP:0012826
510
+ annotations:
511
+ grade: '2'
512
+ impact: some daily activity limitation
513
+ SEVERE:
514
+ title: Severe symptoms, significant limitation
515
+ meaning: HP:0012828
516
+ annotations:
517
+ grade: '3'
518
+ impact: significant daily activity limitation
519
+ LIFE_THREATENING:
520
+ title: Life-threatening symptoms
521
+ aliases:
522
+ - Profound
523
+ annotations:
524
+ grade: '4'
525
+ impact: urgent intervention required
526
+ AllergyTypeEnum:
527
+ title: Types of allergic reactions
528
+ permissible_values:
529
+ DRUG:
530
+ title: Drug allergy
531
+ aliases:
532
+ - Hypersensitivity
533
+ meaning: NCIT:C3114
534
+ annotations:
535
+ examples: penicillin, sulfa drugs
536
+ FOOD:
537
+ title: Food allergy
538
+ annotations:
539
+ common: nuts, shellfish, eggs, milk
540
+ ENVIRONMENTAL:
541
+ title: Environmental allergy
542
+ annotations:
543
+ examples: pollen, dust, mold
544
+ CONTACT:
545
+ title: Contact dermatitis
546
+ annotations:
547
+ examples: latex, nickel, poison ivy
548
+ INSECT:
549
+ title: Insect sting allergy
550
+ annotations:
551
+ examples: bee, wasp, hornet
552
+ ANAPHYLAXIS:
553
+ title: Severe systemic reaction
554
+ annotations:
555
+ severity: life-threatening
556
+ VaccineTypeEnum:
557
+ title: Types of vaccines
558
+ permissible_values:
559
+ LIVE_ATTENUATED:
560
+ title: Weakened live pathogen
561
+ annotations:
562
+ examples: MMR, varicella, yellow fever
563
+ INACTIVATED:
564
+ title: Killed pathogen
565
+ annotations:
566
+ examples: flu shot, hepatitis A, rabies
567
+ SUBUNIT:
568
+ title: Pathogen pieces
569
+ annotations:
570
+ examples: hepatitis B, HPV, pertussis
571
+ TOXOID:
572
+ title: Inactivated toxin
573
+ annotations:
574
+ examples: diphtheria, tetanus
575
+ MRNA:
576
+ title: mRNA vaccine
577
+ annotations:
578
+ examples: COVID-19 (Pfizer, Moderna)
579
+ VIRAL_VECTOR:
580
+ title: Modified virus carrier
581
+ annotations:
582
+ examples: COVID-19 (J&J, AstraZeneca)
583
+ BMIClassificationEnum:
584
+ title: Body Mass Index classifications
585
+ permissible_values:
586
+ UNDERWEIGHT:
587
+ title: BMI less than 18.5
588
+ annotations:
589
+ bmi_range: <18.5
590
+ NORMAL_WEIGHT:
591
+ title: BMI 18.5-24.9
592
+ annotations:
593
+ bmi_range: 18.5-24.9
594
+ OVERWEIGHT:
595
+ title: BMI 25.0-29.9
596
+ annotations:
597
+ bmi_range: 25.0-29.9
598
+ OBESE_CLASS_I:
599
+ title: BMI 30.0-34.9
600
+ annotations:
601
+ bmi_range: 30.0-34.9
602
+ OBESE_CLASS_II:
603
+ title: BMI 35.0-39.9
604
+ annotations:
605
+ bmi_range: 35.0-39.9
606
+ OBESE_CLASS_III:
607
+ title: BMI 40.0 or greater
608
+ annotations:
609
+ bmi_range: ≥40.0
610
+ aliases: morbid obesity