canvas 0.63.0__py3-none-any.whl → 0.89.0__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.
Files changed (185) hide show
  1. {canvas-0.63.0.dist-info → canvas-0.89.0.dist-info}/METADATA +4 -1
  2. {canvas-0.63.0.dist-info → canvas-0.89.0.dist-info}/RECORD +184 -98
  3. {canvas-0.63.0.dist-info → canvas-0.89.0.dist-info}/WHEEL +1 -1
  4. canvas_cli/apps/emit/event_fixtures/UNKNOWN.ndjson +1 -0
  5. canvas_cli/apps/logs/logs.py +386 -22
  6. canvas_cli/main.py +3 -1
  7. canvas_cli/templates/plugins/default/{{ cookiecutter.__project_slug }}/tests/test_models.py +46 -4
  8. canvas_cli/utils/context/context.py +13 -13
  9. canvas_cli/utils/validators/manifest_schema.py +26 -1
  10. canvas_generated/messages/effects_pb2.py +5 -5
  11. canvas_generated/messages/effects_pb2.pyi +108 -2
  12. canvas_generated/messages/events_pb2.py +6 -6
  13. canvas_generated/messages/events_pb2.pyi +282 -2
  14. canvas_sdk/clients/__init__.py +1 -0
  15. canvas_sdk/clients/llms/__init__.py +17 -0
  16. canvas_sdk/clients/llms/libraries/__init__.py +11 -0
  17. canvas_sdk/clients/llms/libraries/llm_anthropic.py +87 -0
  18. canvas_sdk/clients/llms/libraries/llm_api.py +143 -0
  19. canvas_sdk/clients/llms/libraries/llm_google.py +92 -0
  20. canvas_sdk/clients/llms/libraries/llm_openai.py +98 -0
  21. canvas_sdk/clients/llms/structures/__init__.py +9 -0
  22. canvas_sdk/clients/llms/structures/llm_response.py +33 -0
  23. canvas_sdk/clients/llms/structures/llm_tokens.py +53 -0
  24. canvas_sdk/clients/llms/structures/llm_turn.py +47 -0
  25. canvas_sdk/clients/llms/structures/settings/__init__.py +13 -0
  26. canvas_sdk/clients/llms/structures/settings/llm_settings.py +27 -0
  27. canvas_sdk/clients/llms/structures/settings/llm_settings_anthropic.py +43 -0
  28. canvas_sdk/clients/llms/structures/settings/llm_settings_gemini.py +40 -0
  29. canvas_sdk/clients/llms/structures/settings/llm_settings_gpt4.py +40 -0
  30. canvas_sdk/clients/llms/structures/settings/llm_settings_gpt5.py +48 -0
  31. canvas_sdk/clients/third_party.py +3 -0
  32. canvas_sdk/commands/__init__.py +12 -0
  33. canvas_sdk/commands/base.py +33 -2
  34. canvas_sdk/commands/commands/adjust_prescription.py +4 -0
  35. canvas_sdk/commands/commands/custom_command.py +86 -0
  36. canvas_sdk/commands/commands/family_history.py +17 -1
  37. canvas_sdk/commands/commands/immunization_statement.py +42 -2
  38. canvas_sdk/commands/commands/medication_statement.py +16 -1
  39. canvas_sdk/commands/commands/past_surgical_history.py +16 -1
  40. canvas_sdk/commands/commands/perform.py +18 -1
  41. canvas_sdk/commands/commands/prescribe.py +8 -9
  42. canvas_sdk/commands/commands/refill.py +5 -5
  43. canvas_sdk/commands/commands/resolve_condition.py +5 -5
  44. canvas_sdk/commands/commands/review/__init__.py +3 -0
  45. canvas_sdk/commands/commands/review/base.py +72 -0
  46. canvas_sdk/commands/commands/review/imaging.py +13 -0
  47. canvas_sdk/commands/commands/review/lab.py +13 -0
  48. canvas_sdk/commands/commands/review/referral.py +13 -0
  49. canvas_sdk/commands/commands/review/uncategorized_document.py +13 -0
  50. canvas_sdk/commands/validation.py +43 -0
  51. canvas_sdk/effects/batch_originate.py +22 -0
  52. canvas_sdk/effects/calendar/__init__.py +13 -3
  53. canvas_sdk/effects/calendar/{create_calendar.py → calendar.py} +19 -5
  54. canvas_sdk/effects/calendar/event.py +172 -0
  55. canvas_sdk/effects/claim_label.py +93 -0
  56. canvas_sdk/effects/claim_line_item.py +47 -0
  57. canvas_sdk/effects/claim_queue.py +49 -0
  58. canvas_sdk/effects/fax/__init__.py +3 -0
  59. canvas_sdk/effects/fax/base.py +77 -0
  60. canvas_sdk/effects/fax/note.py +42 -0
  61. canvas_sdk/effects/metadata.py +15 -1
  62. canvas_sdk/effects/note/__init__.py +8 -1
  63. canvas_sdk/effects/note/appointment.py +135 -7
  64. canvas_sdk/effects/note/base.py +17 -0
  65. canvas_sdk/effects/note/message.py +22 -14
  66. canvas_sdk/effects/note/note.py +150 -1
  67. canvas_sdk/effects/observation/__init__.py +11 -0
  68. canvas_sdk/effects/observation/base.py +206 -0
  69. canvas_sdk/effects/patient/__init__.py +2 -0
  70. canvas_sdk/effects/patient/base.py +8 -0
  71. canvas_sdk/effects/payment/__init__.py +11 -0
  72. canvas_sdk/effects/payment/base.py +355 -0
  73. canvas_sdk/effects/payment/post_claim_payment.py +49 -0
  74. canvas_sdk/effects/send_contact_verification.py +42 -0
  75. canvas_sdk/effects/task/__init__.py +2 -1
  76. canvas_sdk/effects/task/task.py +30 -0
  77. canvas_sdk/effects/validation/__init__.py +3 -0
  78. canvas_sdk/effects/validation/base.py +92 -0
  79. canvas_sdk/events/base.py +15 -0
  80. canvas_sdk/handlers/application.py +7 -7
  81. canvas_sdk/handlers/simple_api/api.py +1 -4
  82. canvas_sdk/handlers/simple_api/websocket.py +1 -4
  83. canvas_sdk/handlers/utils.py +14 -0
  84. canvas_sdk/questionnaires/utils.py +1 -0
  85. canvas_sdk/templates/utils.py +17 -4
  86. canvas_sdk/test_utils/factories/FACTORY_GUIDE.md +362 -0
  87. canvas_sdk/test_utils/factories/__init__.py +115 -0
  88. canvas_sdk/test_utils/factories/calendar.py +24 -0
  89. canvas_sdk/test_utils/factories/claim.py +81 -0
  90. canvas_sdk/test_utils/factories/claim_diagnosis_code.py +16 -0
  91. canvas_sdk/test_utils/factories/coverage.py +17 -0
  92. canvas_sdk/test_utils/factories/imaging.py +74 -0
  93. canvas_sdk/test_utils/factories/lab.py +192 -0
  94. canvas_sdk/test_utils/factories/medication_history.py +75 -0
  95. canvas_sdk/test_utils/factories/note.py +52 -0
  96. canvas_sdk/test_utils/factories/organization.py +50 -0
  97. canvas_sdk/test_utils/factories/practicelocation.py +88 -0
  98. canvas_sdk/test_utils/factories/referral.py +81 -0
  99. canvas_sdk/test_utils/factories/staff.py +111 -0
  100. canvas_sdk/test_utils/factories/task.py +66 -0
  101. canvas_sdk/test_utils/factories/uncategorized_clinical_document.py +48 -0
  102. canvas_sdk/utils/metrics.py +4 -1
  103. canvas_sdk/v1/data/__init__.py +66 -7
  104. canvas_sdk/v1/data/allergy_intolerance.py +5 -11
  105. canvas_sdk/v1/data/appointment.py +18 -4
  106. canvas_sdk/v1/data/assessment.py +2 -12
  107. canvas_sdk/v1/data/banner_alert.py +2 -4
  108. canvas_sdk/v1/data/base.py +53 -14
  109. canvas_sdk/v1/data/billing.py +8 -11
  110. canvas_sdk/v1/data/calendar.py +64 -0
  111. canvas_sdk/v1/data/care_team.py +4 -10
  112. canvas_sdk/v1/data/claim.py +172 -66
  113. canvas_sdk/v1/data/claim_diagnosis_code.py +19 -0
  114. canvas_sdk/v1/data/claim_line_item.py +2 -5
  115. canvas_sdk/v1/data/coding.py +19 -0
  116. canvas_sdk/v1/data/command.py +2 -4
  117. canvas_sdk/v1/data/common.py +10 -0
  118. canvas_sdk/v1/data/compound_medication.py +3 -4
  119. canvas_sdk/v1/data/condition.py +4 -9
  120. canvas_sdk/v1/data/coverage.py +66 -26
  121. canvas_sdk/v1/data/detected_issue.py +20 -20
  122. canvas_sdk/v1/data/device.py +2 -14
  123. canvas_sdk/v1/data/discount.py +2 -5
  124. canvas_sdk/v1/data/encounter.py +44 -0
  125. canvas_sdk/v1/data/facility.py +1 -0
  126. canvas_sdk/v1/data/goal.py +2 -14
  127. canvas_sdk/v1/data/imaging.py +4 -30
  128. canvas_sdk/v1/data/immunization.py +7 -15
  129. canvas_sdk/v1/data/lab.py +12 -65
  130. canvas_sdk/v1/data/line_item_transaction.py +2 -5
  131. canvas_sdk/v1/data/medication.py +3 -8
  132. canvas_sdk/v1/data/medication_history.py +142 -0
  133. canvas_sdk/v1/data/medication_statement.py +41 -0
  134. canvas_sdk/v1/data/message.py +4 -8
  135. canvas_sdk/v1/data/note.py +37 -38
  136. canvas_sdk/v1/data/observation.py +9 -36
  137. canvas_sdk/v1/data/organization.py +70 -9
  138. canvas_sdk/v1/data/patient.py +8 -12
  139. canvas_sdk/v1/data/patient_consent.py +4 -14
  140. canvas_sdk/v1/data/payment_collection.py +2 -5
  141. canvas_sdk/v1/data/posting.py +3 -9
  142. canvas_sdk/v1/data/practicelocation.py +66 -7
  143. canvas_sdk/v1/data/protocol_override.py +3 -4
  144. canvas_sdk/v1/data/protocol_result.py +3 -3
  145. canvas_sdk/v1/data/questionnaire.py +10 -26
  146. canvas_sdk/v1/data/reason_for_visit.py +2 -6
  147. canvas_sdk/v1/data/referral.py +41 -17
  148. canvas_sdk/v1/data/staff.py +34 -26
  149. canvas_sdk/v1/data/stop_medication_event.py +27 -0
  150. canvas_sdk/v1/data/task.py +30 -11
  151. canvas_sdk/v1/data/team.py +2 -4
  152. canvas_sdk/v1/data/uncategorized_clinical_document.py +84 -0
  153. canvas_sdk/v1/data/user.py +14 -0
  154. canvas_sdk/v1/data/utils.py +5 -0
  155. canvas_sdk/value_set/v2026/__init__.py +1 -0
  156. canvas_sdk/value_set/v2026/adverse_event.py +157 -0
  157. canvas_sdk/value_set/v2026/allergy.py +116 -0
  158. canvas_sdk/value_set/v2026/assessment.py +466 -0
  159. canvas_sdk/value_set/v2026/communication.py +496 -0
  160. canvas_sdk/value_set/v2026/condition.py +52934 -0
  161. canvas_sdk/value_set/v2026/device.py +315 -0
  162. canvas_sdk/value_set/v2026/diagnostic_study.py +5243 -0
  163. canvas_sdk/value_set/v2026/encounter.py +2714 -0
  164. canvas_sdk/value_set/v2026/immunization.py +297 -0
  165. canvas_sdk/value_set/v2026/individual_characteristic.py +339 -0
  166. canvas_sdk/value_set/v2026/intervention.py +1703 -0
  167. canvas_sdk/value_set/v2026/laboratory_test.py +1831 -0
  168. canvas_sdk/value_set/v2026/medication.py +8218 -0
  169. canvas_sdk/value_set/v2026/no_qdm_category_assigned.py +26493 -0
  170. canvas_sdk/value_set/v2026/physical_exam.py +342 -0
  171. canvas_sdk/value_set/v2026/procedure.py +27869 -0
  172. canvas_sdk/value_set/v2026/symptom.py +625 -0
  173. logger/logger.py +30 -31
  174. logger/logstash.py +282 -0
  175. logger/pubsub.py +26 -0
  176. plugin_runner/allowed-module-imports.json +940 -9
  177. plugin_runner/generate_allowed_imports.py +1 -0
  178. plugin_runner/installation.py +2 -2
  179. plugin_runner/plugin_runner.py +21 -24
  180. plugin_runner/sandbox.py +34 -0
  181. protobufs/canvas_generated/messages/effects.proto +65 -0
  182. protobufs/canvas_generated/messages/events.proto +150 -51
  183. settings.py +27 -11
  184. canvas_sdk/effects/calendar/create_event.py +0 -43
  185. {canvas-0.63.0.dist-info → canvas-0.89.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,1703 @@
1
+ from ..value_set import ValueSet
2
+
3
+
4
+ class HospiceCareAmbulatory(ValueSet):
5
+ """
6
+ **Clinical Focus:** The purpose of this value set is to represent concepts of interventions to identify patients receiving hospice care outside of a hospital or long term care facility.
7
+
8
+ **Data Element Scope:** This value set may use a model element related to Procedure or Intervention.
9
+
10
+ **Inclusion Criteria:** Includes concepts that represent a procedure or intervention for hospice care.
11
+
12
+ **Exclusion Criteria:** Excludes concepts that represent palliative care or comfort measures.
13
+
14
+ ** Used in:** CMS131v14
15
+ """
16
+
17
+ VALUE_SET_NAME = "Hospice Care Ambulatory"
18
+ OID = "2.16.840.1.113883.3.526.3.1584"
19
+ DEFINITION_VERSION = "20210825"
20
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
21
+
22
+ CPT = {
23
+ "99377", # Supervision of a hospice patient (patient not present) requiring complex and multidisciplinary care modalities involving regular development and/or revision of care plans by that individual, review of subsequent reports of patient status, review of related laboratory and other studies, communication (including telephone calls) for purposes of assessment or care decisions with health care professional(s), family member(s), surrogate decision maker(s) (eg, legal guardian) and/or key caregiver(s) involved in patient's care, integration of new information into the medical treatment plan and/or adjustment of medical therapy, within a calendar month; 15-29 minutes
24
+ "99378", # Supervision of a hospice patient (patient not present) requiring complex and multidisciplinary care modalities involving regular development and/or revision of care plans by that individual, review of subsequent reports of patient status, review of related laboratory and other studies, communication (including telephone calls) for purposes of assessment or care decisions with health care professional(s), family member(s), surrogate decision maker(s) (eg, legal guardian) and/or key caregiver(s) involved in patient's care, integration of new information into the medical treatment plan and/or adjustment of medical therapy, within a calendar month; 30 minutes or more
25
+ }
26
+
27
+ HCPCSLEVELII = {
28
+ "G0182", # Physician supervision of a patient under a medicare-approved hospice (patient not present) requiring complex and multidisciplinary care modalities involving regular physician development and/or revision of care plans, review of subsequent reports of patient status, review of laboratory and other studies, communication (including telephone calls) with other health care professionals involved in the patient's care, integration of new information into the medical treatment plan and/or adjustment of medical therapy, within a calendar month, 30 minutes or more
29
+ }
30
+
31
+ SNOMEDCT = {
32
+ "170935008", # Full care by hospice (finding)
33
+ "170936009", # Shared care - hospice and general practitioner (finding)
34
+ "385763009", # Hospice care (regime/therapy)
35
+ }
36
+
37
+
38
+ class PalliativeCareIntervention(ValueSet):
39
+ """
40
+ **Clinical Focus:** The purpose of this value set is to represent concepts for palliative care interventions.
41
+
42
+ **Data Element Scope:** This value set may use a model element related to Intervention.
43
+
44
+ **Inclusion Criteria:** Includes concepts that represent palliative care interventions, including procedures and regime/therapy provided as part of palliative care services.
45
+
46
+ **Exclusion Criteria:** Excludes concepts that represent an intervention for hospice.
47
+
48
+ ** Used in:** CMS131v14
49
+ """
50
+
51
+ VALUE_SET_NAME = "Palliative Care Intervention"
52
+ OID = "2.16.840.1.113883.3.464.1003.198.12.1135"
53
+ DEFINITION_VERSION = "20210224"
54
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
55
+
56
+ SNOMEDCT = {
57
+ "103735009", # Palliative care (regime/therapy)
58
+ "105402000", # Visit of patient by chaplain during palliative care (regime/therapy)
59
+ "395669003", # Specialist palliative care treatment (regime/therapy)
60
+ "395670002", # Specialist palliative care treatment - inpatient (regime/therapy)
61
+ "395694002", # Specialist palliative care treatment - daycare (regime/therapy)
62
+ "395695001", # Specialist palliative care treatment - outpatient (regime/therapy)
63
+ "443761007", # Anticipatory palliative care (regime/therapy)
64
+ "1841000124106", # Palliative care medication review (procedure)
65
+ "433181000124107", # Documentation of palliative care medication action plan (procedure)
66
+ }
67
+
68
+
69
+ class ComfortMeasures(ValueSet):
70
+ """
71
+ **Clinical Focus:** The purpose of this value set is to define concepts for interventions of comfort measures care.
72
+
73
+ **Data Element Scope:** This value set may use a model element related to Intervention.
74
+
75
+ **Inclusion Criteria:** Includes concepts that identify an intervention for comfort measures, terminal care, dying care and hospice care.
76
+
77
+ **Exclusion Criteria:** Excludes concepts that identify palliative care.
78
+ """
79
+
80
+ VALUE_SET_NAME = "Comfort Measures"
81
+ OID = "1.3.6.1.4.1.33895.1.3.0.45"
82
+ DEFINITION_VERSION = "20210220"
83
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
84
+
85
+ SNOMEDCT = {
86
+ "133918004", # Comfort measures (regime/therapy)
87
+ "182964004", # Terminal care (regime/therapy)
88
+ "385736008", # Dying care (regime/therapy)
89
+ "385763009", # Hospice care (regime/therapy)
90
+ }
91
+
92
+
93
+ class PsychVisitPsychotherapy(ValueSet):
94
+ """
95
+ **Clinical Focus:** The purpose of this value set is to represent concepts for encounters for psychotherapy visits.
96
+
97
+ **Data Element Scope:** This value set may use a model element related to Encounter.
98
+
99
+ **Inclusion Criteria:** Includes concepts that represent an encounter for individual psychotherapy services.
100
+
101
+ **Exclusion Criteria:** Excludes concepts that represent an encounter for group psychotherapy or family psychotherapy visits.
102
+ """
103
+
104
+ VALUE_SET_NAME = "Psych Visit Psychotherapy"
105
+ OID = "2.16.840.1.113883.3.526.3.1496"
106
+ DEFINITION_VERSION = "20190315"
107
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
108
+
109
+ CPT = {
110
+ "90832", # Psychotherapy, 30 minutes with patient
111
+ "90834", # Psychotherapy, 45 minutes with patient
112
+ "90837", # Psychotherapy, 60 minutes with patient
113
+ }
114
+
115
+ SNOMEDCT = {
116
+ "183381005", # General psychotherapy (regime/therapy)
117
+ "183382003", # Psychotherapy - behavioral (regime/therapy)
118
+ "183383008", # Psychotherapy - cognitive (regime/therapy)
119
+ "18512000", # Individual psychotherapy (regime/therapy)
120
+ "302242004", # Long-term psychodynamic psychotherapy (regime/therapy)
121
+ "304820009", # Developmental psychodynamic psychotherapy (regime/therapy)
122
+ "304822001", # Psychodynamic-interpersonal psychotherapy (regime/therapy)
123
+ "314034001", # Psychodynamic psychotherapy (regime/therapy)
124
+ "38678006", # Client-centered psychotherapy (regime/therapy)
125
+ "401157001", # Brief solution focused psychotherapy (regime/therapy)
126
+ "443730003", # Interpersonal psychotherapy (regime/therapy)
127
+ "75516001", # Psychotherapy (regime/therapy)
128
+ "90102008", # Social psychotherapy (regime/therapy)
129
+ }
130
+
131
+
132
+ class SubstanceUseDisorderTreatment(ValueSet):
133
+ """
134
+ **Clinical Focus:** The purpose of this value set is to represent concepts for encounters for substance use disorder treatment.
135
+
136
+ **Data Element Scope:** This value set may use a model element related to Intervention.
137
+
138
+ **Inclusion Criteria:** Includes concepts that represent an encounter for substance use disorder treatment.
139
+
140
+ **Exclusion Criteria:** No exclusions.
141
+ """
142
+
143
+ VALUE_SET_NAME = "Substance Use Disorder Treatment"
144
+ OID = "2.16.840.1.113883.3.464.1003.106.12.1005"
145
+ DEFINITION_VERSION = "20210220"
146
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
147
+
148
+ HCPCSLEVELII = {
149
+ "G2070", # Medication assisted treatment, buprenorphine (implant insertion); weekly bundle including dispensing and/or administration, substance use counseling, individual and group therapy, and toxicology testing if performed (provision of the services by a medicare-enrolled opioid treatment program)
150
+ "G2071", # Medication assisted treatment, buprenorphine (implant removal); weekly bundle including dispensing and/or administration, substance use counseling, individual and group therapy, and toxicology testing if performed (provision of the services by a medicare-enrolled opioid treatment program)
151
+ "G2072", # Medication assisted treatment, buprenorphine (implant insertion and removal); weekly bundle including dispensing and/or administration, substance use counseling, individual and group therapy, and toxicology testing if performed (provision of the services by a medicare-enrolled opioid treatment program)
152
+ "G2067", # Medication assisted treatment, methadone; weekly bundle including dispensing and/or administration, substance use counseling, individual and group therapy, and toxicology testing, if performed (provision of the services by a medicare-enrolled opioid treatment program)
153
+ "G2068", # Medication assisted treatment, buprenorphine (oral); weekly bundle including dispensing and/or administration, substance use counseling, individual and group therapy, and toxicology testing if performed (provision of the services by a medicare-enrolled opioid treatment program)
154
+ "G2069", # Medication assisted treatment, buprenorphine (injectable) administered on a monthly basis; bundle including dispensing and/or administration, substance use counseling, individual and group therapy, and toxicology testing if performed (provision of the services by a medicare-enrolled opioid treatment program)
155
+ "G2073", # Medication assisted treatment, naltrexone; weekly bundle including dispensing and/or administration, substance use counseling, individual and group therapy, and toxicology testing if performed (provision of the services by a medicare-enrolled opioid treatment program)
156
+ "G2074", # Medication assisted treatment, weekly bundle not including the drug, including substance use counseling, individual and group therapy, and toxicology testing if performed (provision of the services by a medicare-enrolled opioid treatment program)
157
+ "G2075", # Medication assisted treatment, medication not otherwise specified; weekly bundle including dispensing and/or administration, substance use counseling, individual and group therapy, and toxicology testing, if performed (provision of the services by a medicare-enrolled opioid treatment program)
158
+ "G2076", # Intake activities, including initial medical examination that is conducted by an appropriately licensed practitioner and preparation of a care plan, which may be informed by administration of a standardized, evidence-based social determinants of health risk assessment to identify unmet health-related social needs, and that includes the patient's goals and mutually agreed-upon actions for the patient to meet those goals, including harm reduction interventions; the patient's needs and goals in the areas of education, vocational training, and employment; and the medical and psychiatric, psychosocial, economic, legal, housing, and other recovery support services that a patient needs and wishes to pursue, conducted by an appropriately licensed/credentialed personnel (provision of the services by a medicare-enrolled opioid treatment program); list separately in addition to each primary code
159
+ "G2077", # Periodic assessment; assessing periodically by an otp practitioner and includes a review of moud dosing, treatment response, other substance use disorder treatment needs, responses and patient-identified goals, and other relevant physical and psychiatric treatment needs and goals; assessment may be informed by administration of a standardized, evidence-based social determinants of health risk assessment to identify unmet health-related social needs, or the need and interest for harm reduction interventions and recovery support services (provision of the services by a medicare-enrolled opioid treatment program); list separately in addition to each primary code
160
+ "G2080", # Each additional 30 minutes of counseling in a week of medication assisted treatment, (provision of the services by a medicare-enrolled opioid treatment program); list separately in addition to code for primary procedure
161
+ "G2086", # Office-based treatment for opioid use disorder, including development of the treatment plan, care coordination, individual therapy and group therapy and counseling; at least 70 minutes in the first calendar month
162
+ "G2087", # Office-based treatment for opioid use disorder, including care coordination, individual therapy and group therapy and counseling; at least 60 minutes in a subsequent calendar month
163
+ "H0020", # Alcohol and/or drug services; methadone administration and/or service (provision of the drug by a licensed program)
164
+ "H0033", # Oral medication administration, direct observation
165
+ }
166
+
167
+ SNOMEDCT = {
168
+ "171047005", # Drugs of addiction education (procedure)
169
+ "20093000", # Alcohol rehabilitation and detoxification (regime/therapy)
170
+ "23915005", # Combined alcohol and drug rehabilitation and detoxification (regime/therapy)
171
+ "24165007", # Alcoholism counseling (procedure)
172
+ "266707007", # Drug addiction therapy (regime/therapy)
173
+ "310653000", # Drug addiction therapy using methadone (regime/therapy)
174
+ "313071005", # Counseling for substance abuse (procedure)
175
+ "370881007", # Abuse prevention assessment (procedure)
176
+ "370884004", # Abuse prevention management (procedure)
177
+ "385989002", # Substance use therapy (regime/therapy)
178
+ "386448003", # Substance use prevention (procedure)
179
+ "386449006", # Substance use treatment: alcohol withdrawal (regime/therapy)
180
+ "386450006", # Substance use treatment: drug withdrawal (regime/therapy)
181
+ "386451005", # Substance use treatment: overdose (regime/therapy)
182
+ "408933008", # Substance abuse prevention (procedure)
183
+ "408934002", # Substance abuse prevention assessment (procedure)
184
+ "408935001", # Substance abuse prevention education (procedure)
185
+ "408936000", # Substance abuse prevention management (procedure)
186
+ "408941008", # Drug abuse prevention (procedure)
187
+ "408942001", # Drug abuse prevention assessment (procedure)
188
+ "408943006", # Drug abuse prevention education (procedure)
189
+ "408944000", # Drug abuse prevention management (procedure)
190
+ "408945004", # Alcohol abuse prevention (procedure)
191
+ "408947007", # Alcohol abuse prevention education (procedure)
192
+ "408948002", # Alcohol abuse prevention management (procedure)
193
+ "410419007", # Substance use surveillance (regime/therapy)
194
+ "413473000", # Counseling about alcohol consumption (procedure)
195
+ "423416000", # Substance use cessation case management (procedure)
196
+ "424148004", # Substance use cessation surveillance (regime/therapy)
197
+ "424407005", # Substance use cessation education, guidance, and counseling (procedure)
198
+ "424589009", # Substance use treatment: cessation (regime/therapy)
199
+ "426928008", # Prevention of opioid abuse (procedure)
200
+ "429291000124102", # Alcohol brief intervention (procedure)
201
+ "56876005", # Drug rehabilitation and detoxification (regime/therapy)
202
+ "60112009", # Drug addiction counseling (procedure)
203
+ "707166002", # Alcohol reduction program (regime/therapy)
204
+ "720174008", # Drug harm reduction program (regime/therapy)
205
+ "720175009", # Alcohol harm reduction program (regime/therapy)
206
+ "720176005", # Alcohol relapse prevention program (regime/therapy)
207
+ "720177001", # Drug relapse prevention program (regime/therapy)
208
+ "737363002", # Alcohol abuse surveillance (regime/therapy)
209
+ "792901003", # Drug addiction therapy using buprenorphine (regime/therapy)
210
+ "792902005", # Drug addiction therapy using buprenorphine and naloxone (regime/therapy)
211
+ }
212
+
213
+
214
+ class TobaccoUseCessationCounseling(ValueSet):
215
+ """
216
+ **Clinical Focus:** The purpose of this value set is to represent concepts for tobacco cessation counseling.
217
+
218
+ **Data Element Scope:** This value set may use a model element related to Intervention.
219
+
220
+ **Inclusion Criteria:** Includes concepts that represent an intervention that may include referral to tobacco cessation-related services or providers, education about the benefits of stopping tobacco use, education about the negative side effects of using tobacco, and monitoring for tobacco cessation.
221
+
222
+ **Exclusion Criteria:** No exclusions.
223
+ """
224
+
225
+ VALUE_SET_NAME = "Tobacco Use Cessation Counseling"
226
+ OID = "2.16.840.1.113883.3.526.3.509"
227
+ DEFINITION_VERSION = "20170504"
228
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
229
+
230
+ CPT = {
231
+ "99406", # Smoking and tobacco use cessation counseling visit; intermediate, greater than 3 minutes up to 10 minutes
232
+ "99407", # Smoking and tobacco use cessation counseling visit; intensive, greater than 10 minutes
233
+ }
234
+
235
+ SNOMEDCT = {
236
+ "1148687006", # Education about cessation of electronic cigarette use (procedure)
237
+ "171055003", # Pregnancy smoking education (procedure)
238
+ "185795007", # Stop smoking monitoring verbal invite (procedure)
239
+ "185796008", # Stop smoking monitoring telephone invite (procedure)
240
+ "225323000", # Smoking cessation education (procedure)
241
+ "225324006", # Smoking effects education (procedure)
242
+ "310429001", # Smoking monitoring invitation (procedure)
243
+ "315232003", # Referral to stop-smoking clinic (procedure)
244
+ "384742004", # Smoking cessation assistance (regime/therapy)
245
+ "395700008", # Referral to smoking cessation advisor (procedure)
246
+ "449841000124108", # Referral to tobacco use cessation clinic (procedure)
247
+ "449851000124105", # Referral to tobacco use cessation counselor (procedure)
248
+ "449861000124107", # Referral to tobacco use cessation counseling program (procedure)
249
+ "449871000124100", # Referral to tobacco use quit line (procedure)
250
+ "702388001", # Tobacco use cessation education (procedure)
251
+ "710081004", # Smoking cessation therapy (regime/therapy)
252
+ "711028002", # Counseling about tobacco use (procedure)
253
+ "713700008", # Smoking cessation drug therapy (regime/therapy)
254
+ }
255
+
256
+
257
+ class CognitiveAssessment(ValueSet):
258
+ """
259
+ **Clinical Focus:** The purpose of this value set is to represent concepts for assessments performed for the evaluation of cognition.
260
+
261
+ **Data Element Scope:** This value set may use a model element related to Intervention.
262
+
263
+ **Inclusion Criteria:** Includes concepts that describe assessments for evaluation of cognition.
264
+
265
+ **Exclusion Criteria:** Excludes concepts that identify specific standardized tools used to evaluate cognition.
266
+ """
267
+
268
+ VALUE_SET_NAME = "Cognitive Assessment"
269
+ OID = "2.16.840.1.113883.3.526.3.1332"
270
+ DEFINITION_VERSION = "20170504"
271
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
272
+
273
+ SNOMEDCT = {
274
+ "113024001", # Assessment and interpretation of higher cerebral function, cognitive testing (procedure)
275
+ "4719001", # Psychologic cognitive testing and assessment (procedure)
276
+ }
277
+
278
+
279
+ class CounselingForNutrition(ValueSet):
280
+ """
281
+ **Clinical Focus:** The purpose of this value set is to represent concepts for nutrition counseling interventions.
282
+
283
+ **Data Element Scope:** This value set may use a model element related to Intervention.
284
+
285
+ **Inclusion Criteria:** Includes concepts that represent counseling for nutrition, including medical nutrition therapy, dietetic services, diet education, and weight loss management.
286
+
287
+ **Exclusion Criteria:** No exclusions.
288
+ """
289
+
290
+ VALUE_SET_NAME = "Counseling for Nutrition"
291
+ OID = "2.16.840.1.113883.3.464.1003.195.12.1003"
292
+ DEFINITION_VERSION = "20170504"
293
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
294
+
295
+ CPT = {
296
+ "97802", # Medical nutrition therapy; initial assessment and intervention, individual, face-to-face with the patient, each 15 minutes
297
+ "97803", # Medical nutrition therapy; re-assessment and intervention, individual, face-to-face with the patient, each 15 minutes
298
+ "97804", # Medical nutrition therapy; group (2 or more individual(s)), each 30 minutes
299
+ }
300
+
301
+ SNOMEDCT = {
302
+ "11816003", # Diet education (procedure)
303
+ "1230141004", # Education about nutrition influence on health (procedure)
304
+ "14051000175103", # Dietary education for cardiovascular disorder (procedure)
305
+ "183059007", # High fiber diet education (procedure)
306
+ "183060002", # Low residue diet education (procedure)
307
+ "183061003", # Low fat diet education (procedure)
308
+ "183062005", # Low cholesterol diet education (procedure)
309
+ "183063000", # Low salt diet education (procedure)
310
+ "183065007", # Low carbohydrate diet education (procedure)
311
+ "183066008", # Low protein diet education (procedure)
312
+ "183067004", # High protein diet education (procedure)
313
+ "183070000", # Vegetarian diet education (procedure)
314
+ "183071001", # Vegan diet education (procedure)
315
+ "226067002", # Food hygiene education (procedure)
316
+ "266724001", # Weight-reducing diet education (procedure)
317
+ "275919002", # Weight loss advised (situation)
318
+ "281085002", # Sugar-free diet education (procedure)
319
+ "284352003", # Obesity diet education (procedure)
320
+ "305849009", # Seen by dietetics service (finding)
321
+ "305850009", # Seen by community-based dietetics service (finding)
322
+ "305851008", # Seen by hospital-based dietetics service (finding)
323
+ "306163007", # Referral to dietetics service (procedure)
324
+ "306164001", # Referral to community-based dietetics service (procedure)
325
+ "306165000", # Referral to hospital-based dietetics service (procedure)
326
+ "306626002", # Discharge from dietetics service (procedure)
327
+ "306627006", # Discharge from hospital dietetics service (procedure)
328
+ "306628001", # Discharge from community dietetics service (procedure)
329
+ "313210009", # Fluid intake education (procedure)
330
+ "370847001", # Dietary needs education (procedure)
331
+ "386464006", # Prescribed diet education (procedure)
332
+ "404923009", # Weight gain advised (situation)
333
+ "408910007", # Enteral feeding education (procedure)
334
+ "410171007", # Nutrition care education (procedure)
335
+ "410177006", # Special diet education (procedure)
336
+ "410200000", # Weight control education (procedure)
337
+ "428461000124101", # Referral to nutrition professional (procedure)
338
+ "428691000124107", # Vitamin K dietary intake education (procedure)
339
+ "429095004", # Dietary education for weight gain (procedure)
340
+ "431482008", # Dietary education for competitive athlete (procedure)
341
+ "441041000124100", # Counseling about nutrition (regime/therapy)
342
+ "441201000124108", # Counseling about nutrition using cognitive behavioral theoretical approach (regime/therapy)
343
+ "441231000124100", # Counseling about nutrition using health belief model (regime/therapy)
344
+ "441241000124105", # Counseling about nutrition using social learning theory approach (regime/therapy)
345
+ "441251000124107", # Counseling about nutrition using transtheoretical model and stages of change approach (regime/therapy)
346
+ "441261000124109", # Counseling about nutrition using motivational interviewing technique (regime/therapy)
347
+ "441271000124102", # Counseling about nutrition using goal setting strategy (regime/therapy)
348
+ "441281000124104", # Counseling about nutrition using self-monitoring strategy (regime/therapy)
349
+ "441291000124101", # Counseling about nutrition using problem solving strategy (regime/therapy)
350
+ "441301000124100", # Counseling about nutrition using social support strategy (regime/therapy)
351
+ "441311000124102", # Counseling about nutrition using stress management strategy (regime/therapy)
352
+ "441321000124105", # Counseling about nutrition using stimulus control strategy (regime/therapy)
353
+ "441331000124108", # Counseling about nutrition using cognitive restructuring strategy (regime/therapy)
354
+ "441341000124103", # Counseling about nutrition using relapse prevention strategy (regime/therapy)
355
+ "441351000124101", # Counseling about nutrition using rewards and contingency management strategy (regime/therapy)
356
+ "443288003", # Lifestyle education regarding diet (procedure)
357
+ "445291000124103", # Nutrition-related skill education (procedure)
358
+ "445301000124102", # Content-related nutrition education (procedure)
359
+ "445331000124105", # Nutrition-related laboratory result interpretation education (procedure)
360
+ "445641000124105", # Technical nutrition education (procedure)
361
+ "609104008", # Educated about weight management (situation)
362
+ "61310001", # Nutrition education (procedure)
363
+ "698471002", # Patient advised about weight management (situation)
364
+ "699827002", # Dietary education about fluid restriction (procedure)
365
+ "699829004", # High energy diet education (procedure)
366
+ "699830009", # Food fortification education (procedure)
367
+ "699849008", # Healthy eating education (procedure)
368
+ "700154005", # Seen in weight management clinic (finding)
369
+ "700258004", # Dietary education about vitamin intake (procedure)
370
+ "705060005", # Diet education about mineral intake (procedure)
371
+ "710881000", # Education about eating pattern (procedure)
372
+ }
373
+
374
+
375
+ class CounselingForPhysicalActivity(ValueSet):
376
+ """
377
+ **Clinical Focus:** The purpose of this value set is to represent concepts for physical activity counseling.
378
+
379
+ **Data Element Scope:** This value set may use a model element related to Intervention.
380
+
381
+ **Inclusion Criteria:** Includes concepts that represent counseling or referrals for physical activity, including weight management services.
382
+
383
+ **Exclusion Criteria:** No exclusions.
384
+ """
385
+
386
+ VALUE_SET_NAME = "Counseling for Physical Activity"
387
+ OID = "2.16.840.1.113883.3.464.1003.118.12.1035"
388
+ DEFINITION_VERSION = "20170504"
389
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
390
+
391
+ SNOMEDCT = {
392
+ "103736005", # History and physical examination, sports participation (procedure)
393
+ "183073003", # Patient advised about exercise (situation)
394
+ "281090004", # Recommendation to exercise (procedure)
395
+ "304507003", # Exercise education (procedure)
396
+ "304549008", # Giving encouragement to exercise (procedure)
397
+ "304558001", # Reassuring about exercise (procedure)
398
+ "310882002", # Exercise on prescription (regime/therapy)
399
+ "386291006", # Exercise promotion: strength training (procedure)
400
+ "386292004", # Exercise promotion: stretching (procedure)
401
+ "386463000", # Prescribed activity/exercise education (procedure)
402
+ "390864007", # Referral for exercise therapy (procedure)
403
+ "390893007", # Referral to physical activity program (procedure)
404
+ "398636004", # Physical activity assessment (procedure)
405
+ "398752005", # Referral to weight maintenance regimen service (procedure)
406
+ "408289007", # Refer to weight management program (procedure)
407
+ "410200000", # Weight control education (procedure)
408
+ "410289001", # Exercises education, guidance, and counseling (procedure)
409
+ "410335001", # Exercises case management (procedure)
410
+ "429778002", # Patient given written advice on benefits of physical activity (situation)
411
+ "435551000124105", # Counseling about physical activity (procedure)
412
+ "710849009", # Assessment of exercise behavior (procedure)
413
+ }
414
+
415
+
416
+ class DietaryRecommendations(ValueSet):
417
+ """
418
+ **Clinical Focus:** The purpose of this value set is to represent concepts for recommendations and education for diet and nutrition.
419
+
420
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
421
+
422
+ **Inclusion Criteria:** This value set may use a model element related to Intervention or Procedure.
423
+
424
+ **Exclusion Criteria:** No exclusions.
425
+ """
426
+
427
+ VALUE_SET_NAME = "Dietary Recommendations"
428
+ OID = "2.16.840.1.113883.3.600.1515"
429
+ DEFINITION_VERSION = "20250205"
430
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
431
+
432
+ CPT = {
433
+ "97802", # Medical nutrition therapy; initial assessment and intervention, individual, face-to-face with the patient, each 15 minutes
434
+ "97803", # Medical nutrition therapy; re-assessment and intervention, individual, face-to-face with the patient, each 15 minutes
435
+ "97804", # Medical nutrition therapy; group (2 or more individual(s)), each 30 minutes
436
+ }
437
+
438
+ HCPCSLEVELII = {
439
+ "G0270", # Medical nutrition therapy; reassessment and subsequent intervention(s) following second referral in same year for change in diagnosis, medical condition or treatment regimen (including additional hours needed for renal disease), individual, face to face with the patient, each 15 minutes
440
+ "G0271", # Medical nutrition therapy, reassessment and subsequent intervention(s) following second referral in same year for change in diagnosis, medical condition, or treatment regimen (including additional hours needed for renal disease), group (2 or more individuals), each 30 minutes
441
+ "S9452", # Nutrition classes, non-physician provider, per session
442
+ "S9470", # Nutritional counseling, dietitian visit
443
+ }
444
+
445
+ SNOMEDCT = {
446
+ "103699006", # Referral to dietitian (procedure)
447
+ "1055204001", # Fat and oil modified diet (regime/therapy)
448
+ "1151000175103", # Dietary Approaches to Stop Hypertension diet (regime/therapy)
449
+ "1156315004", # Plant fiber modified diet (regime/therapy)
450
+ "1156717005", # Cardiovascular Health Integrated Lifestyle Diet 1 (regime/therapy)
451
+ "1156958007", # Promotion of food and nutrient intake to support target weight and body mass (procedure)
452
+ "11816003", # Diet education (procedure)
453
+ "1230141004", # Education about nutrition influence on health (procedure)
454
+ "1255163004", # Mediterranean diet (regime/therapy)
455
+ "14051000175103", # Dietary education for cardiovascular disorder (procedure)
456
+ "170961007", # Menopause dietary education (procedure)
457
+ "182922004", # Dietary regime (regime/therapy)
458
+ "183059007", # High fiber diet education (procedure)
459
+ "183060002", # Low residue diet education (procedure)
460
+ "183061003", # Low fat diet education (procedure)
461
+ "183062005", # Low cholesterol diet education (procedure)
462
+ "183063000", # Low salt diet education (procedure)
463
+ "183065007", # Low carbohydrate diet education (procedure)
464
+ "183066008", # Low protein diet education (procedure)
465
+ "183067004", # High protein diet education (procedure)
466
+ "183070000", # Vegetarian diet education (procedure)
467
+ "183071001", # Vegan diet education (procedure)
468
+ "266724001", # Weight-reducing diet education (procedure)
469
+ "281085002", # Sugar-free diet education (procedure)
470
+ "284071006", # Dietary treatment for disorder (regime/therapy)
471
+ "284350006", # Diabetes mellitus diet education (procedure)
472
+ "284352003", # Obesity diet education (procedure)
473
+ "285383009", # Recommendation to change fruit and nut intake (procedure)
474
+ "289176001", # Recommendation to change sodium intake (procedure)
475
+ "304491008", # Dietary education for disorder (procedure)
476
+ "306163007", # Referral to dietetics service (procedure)
477
+ "306353006", # Referral to community-based dietitian (procedure)
478
+ "306354000", # Referral to hospital-based dietitian (procedure)
479
+ "370847001", # Dietary needs education (procedure)
480
+ "386464006", # Prescribed diet education (procedure)
481
+ "410114009", # Dietary compliance education (procedure)
482
+ "410171007", # Nutrition care education (procedure)
483
+ "410177006", # Special diet education (procedure)
484
+ "410270001", # Nutritionist education, guidance, and counseling (procedure)
485
+ "413315001", # Nutrition / feeding management (regime/therapy)
486
+ "416116000", # Referral to home registered dietitian (procedure)
487
+ "418995006", # Feeding regime (regime/therapy)
488
+ "424753004", # Dietary management education, guidance, and counseling (procedure)
489
+ "429071001", # Dietary education for lipid disorder (procedure)
490
+ "429095004", # Dietary education for weight gain (procedure)
491
+ "435581000124102", # Carbohydrate modified diet (regime/therapy)
492
+ "435671000124101", # Cholesterol modified diet (regime/therapy)
493
+ "435701000124100", # Energy modified diet (regime/therapy)
494
+ "435771000124106", # General healthful diet (regime/therapy)
495
+ "436691000124108", # Decreased carbohydrate diet (regime/therapy)
496
+ "436891000124107", # Saturated fat modified diet (regime/therapy)
497
+ "436951000124105", # Decreased saturated fat diet (regime/therapy)
498
+ "437231000124109", # Sodium modified diet (regime/therapy)
499
+ "437421000124105", # Decreased sodium diet (regime/therapy)
500
+ "438578000", # Dietary education for renal disorder (procedure)
501
+ "438588004", # Dietary education for hepatic disorder (procedure)
502
+ "440328002", # Dietary education for pancreatic disorder (procedure)
503
+ "443288003", # Lifestyle education regarding diet (procedure)
504
+ "445291000124103", # Nutrition-related skill education (procedure)
505
+ "445301000124102", # Content-related nutrition education (procedure)
506
+ "445331000124105", # Nutrition-related laboratory result interpretation education (procedure)
507
+ "445341000124100", # Modification of nutritional regime (regime/therapy)
508
+ "445641000124105", # Technical nutrition education (procedure)
509
+ "61310001", # Nutrition education (procedure)
510
+ "698612005", # Dietary education for impaired glucose tolerance (procedure)
511
+ "699849008", # Healthy eating education (procedure)
512
+ "710881000", # Education about eating pattern (procedure)
513
+ "715282001", # Combined healthy eating and physical education program (regime/therapy)
514
+ "765021002", # Vegetarian diet (regime/therapy)
515
+ "765024005", # Atkins diet (regime/therapy)
516
+ "770749002", # Referral for combined healthy eating and physical education program (procedure)
517
+ }
518
+
519
+
520
+ class FollowUpWithin4Weeks(ValueSet):
521
+ """
522
+ **Clinical Focus:** The purpose of this value set is to represent concepts for follow-up timing.
523
+
524
+ **Data Element Scope:** This value set may use a model element related to Intervention.
525
+
526
+ **Inclusion Criteria:** Includes concepts that represent follow-up timing from one day to one month.
527
+
528
+ **Exclusion Criteria:** No exclusions.
529
+ """
530
+
531
+ VALUE_SET_NAME = "Follow Up Within 4 Weeks"
532
+ OID = "2.16.840.1.113883.3.526.3.1578"
533
+ DEFINITION_VERSION = "20200307"
534
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
535
+
536
+ SNOMEDCT = {
537
+ "183617005", # Follow-up 1 day (finding)
538
+ "183618000", # Follow-up 2-3 days (finding)
539
+ "183619008", # Follow-up 4-6 days (finding)
540
+ "183620002", # Follow-up 1 week (finding)
541
+ "183621003", # Follow-up 2 weeks (finding)
542
+ "183622005", # Follow-up 3 weeks (finding)
543
+ "183623000", # Follow-up 1 month (finding)
544
+ }
545
+
546
+
547
+ class FollowUpWithin6Months(ValueSet):
548
+ """
549
+ **Clinical Focus:** The purpose of this value set is to represent concepts for follow-up timing.
550
+
551
+ **Data Element Scope:** This value set may use a model element related to Intervention.
552
+
553
+ **Inclusion Criteria:** Includes concepts that represent follow-up timing within six months.
554
+
555
+ **Exclusion Criteria:** No exclusions.
556
+ """
557
+
558
+ VALUE_SET_NAME = "Follow Up Within 6 Months"
559
+ OID = "2.16.840.1.113762.1.4.1108.125"
560
+ DEFINITION_VERSION = "20240125"
561
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
562
+
563
+ SNOMEDCT = {
564
+ "183617005", # Follow-up 1 day (finding)
565
+ "183618000", # Follow-up 2-3 days (finding)
566
+ "183619008", # Follow-up 4-6 days (finding)
567
+ "183620002", # Follow-up 1 week (finding)
568
+ "183621003", # Follow-up 2 weeks (finding)
569
+ "183622005", # Follow-up 3 weeks (finding)
570
+ "183623000", # Follow-up 1 month (finding)
571
+ "183624006", # Follow-up 2-3 months (finding)
572
+ "183625007", # Follow-up 4-6 months (finding)
573
+ "183628009", # Follow-up 6 weeks (finding)
574
+ "300042001", # Follow-up 6 months (finding)
575
+ }
576
+
577
+
578
+ class LifestyleRecommendation(ValueSet):
579
+ """
580
+ **Clinical Focus:** The purpose of this value set is to represent concepts for lifestyle needs and education related to hypertension.
581
+
582
+ **Data Element Scope:** This value set may use a model element related to Procedure or Intervention.
583
+
584
+ **Inclusion Criteria:** Includes concepts that represent a procedure or intervention for lifestyle education focused on hypertension.
585
+
586
+ **Exclusion Criteria:** No exclusions.
587
+ """
588
+
589
+ VALUE_SET_NAME = "Lifestyle Recommendation"
590
+ OID = "2.16.840.1.113883.3.526.3.1581"
591
+ DEFINITION_VERSION = "20200307"
592
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
593
+
594
+ SNOMEDCT = {
595
+ "10189761000046105", # Hypertension exercise education (procedure)
596
+ "313204009", # Lifestyle education (procedure)
597
+ "39155009", # Hypertension education (procedure)
598
+ "443402002", # Lifestyle education regarding hypertension (procedure)
599
+ }
600
+
601
+
602
+ class RecommendationToIncreasePhysicalActivity(ValueSet):
603
+ """
604
+ **Clinical Focus:** The purpose of this value set is to represent concepts for recommendations for exercise and nutrition education.
605
+
606
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
607
+
608
+ **Inclusion Criteria:** Includes concepts that represent an intervention or procedure for promoting exercise and nutrition regimens.
609
+
610
+ **Exclusion Criteria:** No exclusions.
611
+ """
612
+
613
+ VALUE_SET_NAME = "Recommendation to Increase Physical Activity"
614
+ OID = "2.16.840.1.113883.3.600.1518"
615
+ DEFINITION_VERSION = "20190313"
616
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
617
+
618
+ HCPCSLEVELII = {
619
+ "S9451", # Exercise classes, non-physician provider, per session
620
+ }
621
+
622
+ SNOMEDCT = {
623
+ "281090004", # Recommendation to exercise (procedure)
624
+ "304507003", # Exercise education (procedure)
625
+ "304549008", # Giving encouragement to exercise (procedure)
626
+ "386291006", # Exercise promotion: strength training (procedure)
627
+ "386292004", # Exercise promotion: stretching (procedure)
628
+ "386373004", # Nutrition therapy (regime/therapy)
629
+ "386463000", # Prescribed activity/exercise education (procedure)
630
+ "410289001", # Exercises education, guidance, and counseling (procedure)
631
+ }
632
+
633
+
634
+ class ReferralOrCounselingForAlcoholConsumption(ValueSet):
635
+ """
636
+ **Clinical Focus:** The purpose of this value set is to represent concepts for interventions relevant to alcohol use.
637
+
638
+ **Data Element Scope:** This value set may use a model element related to Procedure or Intervention.
639
+
640
+ **Inclusion Criteria:** Includes concepts that indicate an intervention for the type of education provided, referral to community service, or rehabilitation center for alcohol use.
641
+
642
+ **Exclusion Criteria:** No exclusions.
643
+ """
644
+
645
+ VALUE_SET_NAME = "Referral or Counseling for Alcohol Consumption"
646
+ OID = "2.16.840.1.113883.3.526.3.1583"
647
+ DEFINITION_VERSION = "20200307"
648
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
649
+
650
+ SNOMEDCT = {
651
+ "20093000", # Alcohol rehabilitation and detoxification (regime/therapy)
652
+ "23915005", # Combined alcohol and drug rehabilitation and detoxification (regime/therapy)
653
+ "24165007", # Alcoholism counseling (procedure)
654
+ "281078001", # Education about alcohol consumption (procedure)
655
+ "35637008", # Alcohol rehabilitation (regime/therapy)
656
+ "386449006", # Substance use treatment: alcohol withdrawal (regime/therapy)
657
+ "38670004", # Referral to alcoholism rehabilitation service (procedure)
658
+ "390857005", # Referral to community alcohol team (procedure)
659
+ "408947007", # Alcohol abuse prevention education (procedure)
660
+ "408948002", # Alcohol abuse prevention management (procedure)
661
+ "413130000", # Alcohol disorder monitoring (regime/therapy)
662
+ "413473000", # Counseling about alcohol consumption (procedure)
663
+ "417096006", # Referral to community drug and alcohol team (procedure)
664
+ "431260004", # Referral to specialist alcohol treatment service (procedure)
665
+ "440671000124106", # Management of alcohol intake (procedure)
666
+ "62213004", # Combined alcohol and drug rehabilitation (regime/therapy)
667
+ "64297001", # Detoxication psychiatric therapy for alcoholism (regime/therapy)
668
+ "707166002", # Alcohol reduction program (regime/therapy)
669
+ "720175009", # Alcohol harm reduction program (regime/therapy)
670
+ "720176005", # Alcohol relapse prevention program (regime/therapy)
671
+ "720178006", # Alcohol twelve step program (regime/therapy)
672
+ "737363002", # Alcohol abuse surveillance (regime/therapy)
673
+ "827094004", # Alcohol detoxification (regime/therapy)
674
+ }
675
+
676
+
677
+ class ReferralToPrimaryCareOrAlternateProvider(ValueSet):
678
+ """
679
+ **Clinical Focus:** The purpose of this value set is to represent concepts for referrals to an alternate or primary care provider.
680
+
681
+ **Data Element Scope:** This value set may use a model element related to Intervention.
682
+
683
+ **Inclusion Criteria:** Includes concepts that describe an intervention of a referral to an alternate or primary care provider.
684
+
685
+ **Exclusion Criteria:** No exclusions.
686
+ """
687
+
688
+ VALUE_SET_NAME = "Referral to Primary Care or Alternate Provider"
689
+ OID = "2.16.840.1.113883.3.526.3.1580"
690
+ DEFINITION_VERSION = "20210220"
691
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
692
+
693
+ SNOMEDCT = {
694
+ "134403003", # Urgent referral (procedure)
695
+ "183516009", # Referral to general medical service (procedure)
696
+ "183561008", # Referral to general practitioner (procedure)
697
+ "183856001", # Referral to hypertension clinic (procedure)
698
+ "306206005", # Referral to service (procedure)
699
+ "306253008", # Referral to doctor (procedure)
700
+ "306362008", # Referral to pharmacist (procedure)
701
+ "308470006", # Referral to general physician (procedure)
702
+ "453641000124107", # Referral to specialist pharmacist (procedure)
703
+ }
704
+
705
+
706
+ class WeightReductionRecommended(ValueSet):
707
+ """
708
+ **Clinical Focus:** The purpose of this value set is to represent concepts for discussion, education and management of weight reduction.
709
+
710
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
711
+
712
+ **Inclusion Criteria:** Includes concepts that represent discussion, education and management of weight reduction.
713
+
714
+ **Exclusion Criteria:** No exclusions.
715
+ """
716
+
717
+ VALUE_SET_NAME = "Weight Reduction Recommended"
718
+ OID = "2.16.840.1.113883.3.600.1510"
719
+ DEFINITION_VERSION = "20210220"
720
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
721
+
722
+ HCPCSLEVELII = {
723
+ "G0270", # Medical nutrition therapy; reassessment and subsequent intervention(s) following second referral in same year for change in diagnosis, medical condition or treatment regimen (including additional hours needed for renal disease), individual, face to face with the patient, each 15 minutes
724
+ "G0271", # Medical nutrition therapy, reassessment and subsequent intervention(s) following second referral in same year for change in diagnosis, medical condition, or treatment regimen (including additional hours needed for renal disease), group (2 or more individuals), each 30 minutes
725
+ "G0447", # Face-to-face behavioral counseling for obesity, 15 minutes
726
+ "G0473", # Face-to-face behavioral counseling for obesity, group (2-10), 30 minutes
727
+ "S9449", # Weight management classes, non-physician provider, per session
728
+ "S9451", # Exercise classes, non-physician provider, per session
729
+ "S9452", # Nutrition classes, non-physician provider, per session
730
+ "S9470", # Nutritional counseling, dietitian visit
731
+ }
732
+
733
+ SNOMEDCT = {
734
+ "1181000175107", # Recommendation to lose weight (procedure)
735
+ "170795002", # Follow-up obesity assessment (regime/therapy)
736
+ "248114003", # Actions to lose weight (regime/therapy)
737
+ "266724001", # Weight-reducing diet education (procedure)
738
+ "268523001", # Target weight discussed (regime/therapy)
739
+ "284352003", # Obesity diet education (procedure)
740
+ "289169006", # Exercising to lose weight (regime/therapy)
741
+ "307818003", # Weight monitoring (regime/therapy)
742
+ "388962008", # Weight maintenance regimen (regime/therapy)
743
+ "388970003", # Weight maintenance consultation (procedure)
744
+ "388975008", # Weight reduction consultation (procedure)
745
+ "388976009", # Weight reduction regimen (regime/therapy)
746
+ "398752005", # Referral to weight maintenance regimen service (procedure)
747
+ "408289007", # Refer to weight management program (procedure)
748
+ "410199003", # Weight control assessment (procedure)
749
+ "410200000", # Weight control education (procedure)
750
+ "410201001", # Weight maintenance regimen management (procedure)
751
+ "445033007", # Discussion about ideal body weight (procedure)
752
+ "718361005", # Weight management program (regime/therapy)
753
+ }
754
+
755
+
756
+ class FollowUpForAdolescentDepression(ValueSet):
757
+ """
758
+ **Clinical Focus:** The purpose of this value set is to represent concepts for follow-up plans used to document a plan is in place for the treatment of depression that specifically pertains to the adolescent population.
759
+
760
+ **Data Element Scope:** This value set may use a model element related to Intervention.
761
+
762
+ **Inclusion Criteria:** Includes concepts that represent emotional and coping support as well as mental health management in an attempt to follow up on previously evaluated and diagnosed depression or depressive disorder in adolescents.
763
+
764
+ **Exclusion Criteria:** No exclusions.
765
+ """
766
+
767
+ VALUE_SET_NAME = "Follow Up for Adolescent Depression"
768
+ OID = "2.16.840.1.113883.3.526.3.1569"
769
+ DEFINITION_VERSION = "20210220"
770
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
771
+
772
+ SNOMEDCT = {
773
+ "108313002", # Family psychotherapy procedure (regime/therapy)
774
+ "1555005", # Brief group psychotherapy (regime/therapy)
775
+ "15558000", # Expressive psychotherapy (regime/therapy)
776
+ "18512000", # Individual psychotherapy (regime/therapy)
777
+ "228557008", # Cognitive and behavioral therapy (regime/therapy)
778
+ "229065009", # Exercise therapy (regime/therapy)
779
+ "28868002", # Interactive group medical psychotherapy (regime/therapy)
780
+ "372067001", # Implementation of measures to provide psychological support (regime/therapy)
781
+ "385721005", # Coping support assessment (procedure)
782
+ "385724002", # Coping support management (procedure)
783
+ "385725001", # Emotional support assessment (procedure)
784
+ "385726000", # Emotional support education (procedure)
785
+ "385727009", # Emotional support management (procedure)
786
+ "385887004", # Mental health history taking assessment (procedure)
787
+ "385889001", # Mental health history taking education (procedure)
788
+ "385890005", # Mental health history taking management (procedure)
789
+ "386472008", # Telephone consultation (procedure)
790
+ "401277000", # Completion of mental health crisis plan (procedure)
791
+ "405780009", # Dialectical behavior therapy (regime/therapy)
792
+ "410223002", # Mental health care assessment (procedure)
793
+ "410224008", # Mental health care education (procedure)
794
+ "410225009", # Mental health care management (procedure)
795
+ "410226005", # Mental health promotion assessment (procedure)
796
+ "410227001", # Mental health promotion education (procedure)
797
+ "410228006", # Mental health promotion management (procedure)
798
+ "410229003", # Mental health screening assessment (procedure)
799
+ "410230008", # Mental health screening education (procedure)
800
+ "410231007", # Mental health screening management (procedure)
801
+ "410232000", # Mental health treatment assessment (procedure)
802
+ "410233005", # Mental health treatment education (procedure)
803
+ "410234004", # Management of mental health treatment (procedure)
804
+ "425604002", # Case management follow up (procedure)
805
+ "439141002", # Discharge by mental health primary care worker (procedure)
806
+ "5694008", # Crisis intervention with follow-up (regime/therapy)
807
+ "75516001", # Psychotherapy (regime/therapy)
808
+ "76168009", # Group psychotherapy (regime/therapy)
809
+ "76740001", # Psychiatric telephone consultation or therapy with patient (procedure)
810
+ "768835002", # Depression care management (procedure)
811
+ "81294000", # Patient referral for psychotherapy (procedure)
812
+ "88848003", # Psychiatric follow-up (procedure)
813
+ }
814
+
815
+
816
+ class FollowUpForAdultDepression(ValueSet):
817
+ """
818
+ **Clinical Focus:** The purpose of this value set is to represent concepts for follow-up plans used to document a plan is in place for the treatment of depression specifically pertaining to the adult population.
819
+
820
+ **Data Element Scope:** This value set may use a model element related to Intervention.
821
+
822
+ **Inclusion Criteria:** Includes concepts that represent emotional and coping support as well as mental health management in an attempt to follow up on previously evaluated and diagnosed depression or depressive disorder in the adults.
823
+
824
+ **Exclusion Criteria:** No exclusions.
825
+ """
826
+
827
+ VALUE_SET_NAME = "Follow Up for Adult Depression"
828
+ OID = "2.16.840.1.113883.3.526.3.1568"
829
+ DEFINITION_VERSION = "20210220"
830
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
831
+
832
+ SNOMEDCT = {
833
+ "108313002", # Family psychotherapy procedure (regime/therapy)
834
+ "1555005", # Brief group psychotherapy (regime/therapy)
835
+ "15558000", # Expressive psychotherapy (regime/therapy)
836
+ "18512000", # Individual psychotherapy (regime/therapy)
837
+ "228557008", # Cognitive and behavioral therapy (regime/therapy)
838
+ "229065009", # Exercise therapy (regime/therapy)
839
+ "28868002", # Interactive group medical psychotherapy (regime/therapy)
840
+ "372067001", # Implementation of measures to provide psychological support (regime/therapy)
841
+ "385721005", # Coping support assessment (procedure)
842
+ "385724002", # Coping support management (procedure)
843
+ "385725001", # Emotional support assessment (procedure)
844
+ "385726000", # Emotional support education (procedure)
845
+ "385727009", # Emotional support management (procedure)
846
+ "385887004", # Mental health history taking assessment (procedure)
847
+ "385889001", # Mental health history taking education (procedure)
848
+ "385890005", # Mental health history taking management (procedure)
849
+ "386472008", # Telephone consultation (procedure)
850
+ "401277000", # Completion of mental health crisis plan (procedure)
851
+ "405780009", # Dialectical behavior therapy (regime/therapy)
852
+ "410223002", # Mental health care assessment (procedure)
853
+ "410224008", # Mental health care education (procedure)
854
+ "410225009", # Mental health care management (procedure)
855
+ "410226005", # Mental health promotion assessment (procedure)
856
+ "410227001", # Mental health promotion education (procedure)
857
+ "410228006", # Mental health promotion management (procedure)
858
+ "410229003", # Mental health screening assessment (procedure)
859
+ "410230008", # Mental health screening education (procedure)
860
+ "410231007", # Mental health screening management (procedure)
861
+ "410232000", # Mental health treatment assessment (procedure)
862
+ "410233005", # Mental health treatment education (procedure)
863
+ "410234004", # Management of mental health treatment (procedure)
864
+ "425604002", # Case management follow up (procedure)
865
+ "439141002", # Discharge by mental health primary care worker (procedure)
866
+ "5694008", # Crisis intervention with follow-up (regime/therapy)
867
+ "75516001", # Psychotherapy (regime/therapy)
868
+ "76168009", # Group psychotherapy (regime/therapy)
869
+ "76740001", # Psychiatric telephone consultation or therapy with patient (procedure)
870
+ "768835002", # Depression care management (procedure)
871
+ "81294000", # Patient referral for psychotherapy (procedure)
872
+ "88848003", # Psychiatric follow-up (procedure)
873
+ }
874
+
875
+
876
+ class ReferralForAdolescentDepression(ValueSet):
877
+ """
878
+ **Clinical Focus:** The purpose of this value set is to represent concepts for referrals for depression management for the child and adolescent population.
879
+
880
+ **Data Element Scope:** This value set may use a model element related to Intervention.
881
+
882
+ **Inclusion Criteria:** Includes concepts that represent referrals for depression management in the child and adolescent population.
883
+
884
+ **Exclusion Criteria:** No exclusions.
885
+ """
886
+
887
+ VALUE_SET_NAME = "Referral for Adolescent Depression"
888
+ OID = "2.16.840.1.113883.3.526.3.1570"
889
+ DEFINITION_VERSION = "20200307"
890
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
891
+
892
+ SNOMEDCT = {
893
+ "1186918003", # Referral to intellectual disability psychiatrist (procedure)
894
+ "1186920000", # Referral to intellectual disability psychiatry service (procedure)
895
+ "183524004", # Referral to psychiatry service (procedure)
896
+ "183583007", # Refer to mental health worker (procedure)
897
+ "183866009", # Referral to emergency clinic (procedure)
898
+ "306136006", # Referral to liaison psychiatry service (procedure)
899
+ "306226009", # Referral to mental health counseling service (procedure)
900
+ "306227000", # Referral for mental health counseling (procedure)
901
+ "306252003", # Referral to mental health counselor (procedure)
902
+ "306291008", # Referral to child and adolescent psychiatrist (procedure)
903
+ "308459004", # Referral to psychologist (procedure)
904
+ "308477009", # Referral to psychiatrist (procedure)
905
+ "309627007", # Child referral - clinical psychologist (procedure)
906
+ "390866009", # Referral to mental health team (procedure)
907
+ "703978000", # Referral to primary care service (procedure)
908
+ "710914003", # Referral to family therapy (procedure)
909
+ "711281004", # Referral to support group (procedure)
910
+ }
911
+
912
+
913
+ class ReferralForAdultDepression(ValueSet):
914
+ """
915
+ **Clinical Focus:** The purpose of this value set is to represent concepts for referrals for depression management for the adult population.
916
+
917
+ **Data Element Scope:** This value set may use a model element related to Intervention.
918
+
919
+ **Inclusion Criteria:** Includes concepts that represent referrals for depression management in the adult population.
920
+
921
+ **Exclusion Criteria:** No exclusions.
922
+ """
923
+
924
+ VALUE_SET_NAME = "Referral for Adult Depression"
925
+ OID = "2.16.840.1.113883.3.526.3.1571"
926
+ DEFINITION_VERSION = "20200307"
927
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
928
+
929
+ SNOMEDCT = {
930
+ "1186918003", # Referral to intellectual disability psychiatrist (procedure)
931
+ "1186920000", # Referral to intellectual disability psychiatry service (procedure)
932
+ "183524004", # Referral to psychiatry service (procedure)
933
+ "183528001", # Referral to psychiatrist for the elderly mentally ill (procedure)
934
+ "183583007", # Refer to mental health worker (procedure)
935
+ "183866009", # Referral to emergency clinic (procedure)
936
+ "306136006", # Referral to liaison psychiatry service (procedure)
937
+ "306138007", # Referral to psychogeriatric service (procedure)
938
+ "306204008", # Referral to psychogeriatric day hospital (procedure)
939
+ "306226009", # Referral to mental health counseling service (procedure)
940
+ "306227000", # Referral for mental health counseling (procedure)
941
+ "306252003", # Referral to mental health counselor (procedure)
942
+ "308459004", # Referral to psychologist (procedure)
943
+ "308477009", # Referral to psychiatrist (procedure)
944
+ "390866009", # Referral to mental health team (procedure)
945
+ "703978000", # Referral to primary care service (procedure)
946
+ "710914003", # Referral to family therapy (procedure)
947
+ "711281004", # Referral to support group (procedure)
948
+ }
949
+
950
+
951
+ class OpioidMedicationAssistedTreatmentMat(ValueSet):
952
+ """
953
+ **Clinical Focus:** The purpose of this value set is to group concepts that indicate an opioid medication assisted treatment (MAT).
954
+
955
+ **Data Element Scope:** This value set may use a model element related to intervention.
956
+
957
+ **Inclusion Criteria:** Includes concepts that represent interventions for opioid use disorder treatment.
958
+
959
+ **Exclusion Criteria:** No exclusions.
960
+ """
961
+
962
+ VALUE_SET_NAME = "Opioid Medication Assisted Treatment (MAT)"
963
+ OID = "2.16.840.1.113762.1.4.1111.177"
964
+ DEFINITION_VERSION = "20250211"
965
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
966
+
967
+ SNOMEDCT = {
968
+ "310653000", # Drug addiction therapy using methadone (regime/therapy)
969
+ "792901003", # Drug addiction therapy using buprenorphine (regime/therapy)
970
+ "792902005", # Drug addiction therapy using buprenorphine and naloxone (regime/therapy)
971
+ }
972
+
973
+
974
+ class PalliativeOrHospiceCare(ValueSet):
975
+ """
976
+ **Clinical Focus:** The purpose of this value set is to represent concepts of an intervention or procedure to identify patients receiving palliative, comfort or hospice care.
977
+
978
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
979
+
980
+ **Inclusion Criteria:** Includes concepts that identify an intervention or procedure for palliative, comfort or hospice care.
981
+
982
+ **Exclusion Criteria:** No exclusions.
983
+ """
984
+
985
+ VALUE_SET_NAME = "Palliative or Hospice Care"
986
+ OID = "2.16.840.1.113883.3.600.1.1579"
987
+ DEFINITION_VERSION = "20210224"
988
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
989
+
990
+ SNOMEDCT = {
991
+ "103735009", # Palliative care (regime/therapy)
992
+ "133918004", # Comfort measures (regime/therapy)
993
+ "182964004", # Terminal care (regime/therapy)
994
+ "305284002", # Admission by palliative care physician (procedure)
995
+ "305381007", # Admission to palliative care department (procedure)
996
+ "305981001", # Referral by palliative care physician (procedure)
997
+ "306237005", # Referral to palliative care service (procedure)
998
+ "306288008", # Referral to palliative care physician (procedure)
999
+ "385736008", # Dying care (regime/therapy)
1000
+ "385763009", # Hospice care (regime/therapy)
1001
+ }
1002
+
1003
+
1004
+ class BehavioralOrNeuropsychAssessment(ValueSet):
1005
+ """
1006
+ **Clinical Focus:** The purpose of this value set is to represent concepts of encounters for neuropsychological assessments.
1007
+
1008
+ **Data Element Scope:** This value set may use a model element related to Encounter.
1009
+
1010
+ **Inclusion Criteria:** Includes concepts that describe an assessment for applicable neuropsychological assessments for behavioral health.
1011
+
1012
+ **Exclusion Criteria:** No exclusions.
1013
+ """
1014
+
1015
+ VALUE_SET_NAME = "Behavioral or Neuropsych Assessment"
1016
+ OID = "2.16.840.1.113883.3.526.3.1023"
1017
+ DEFINITION_VERSION = "20190315"
1018
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1019
+
1020
+ CPT = {
1021
+ "96116", # Neurobehavioral status exam (clinical assessment of thinking, reasoning and judgment, [eg, acquired knowledge, attention, language, memory, planning and problem solving, and visual spatial abilities]), by physician or other qualified health care professional, both face-to-face time with the patient and time interpreting test results and preparing the report; first hour
1022
+ }
1023
+
1024
+ SNOMEDCT = {
1025
+ "307808008", # Neuropsychological testing (procedure)
1026
+ }
1027
+
1028
+
1029
+ class PsychVisitDiagnosticEvaluation(ValueSet):
1030
+ """
1031
+ **Clinical Focus:** The purpose of this value set is to represent concepts for encounters for diagnostic psychiatric evaluations.
1032
+
1033
+ **Data Element Scope:** This value set may use a model element related to Encounter.
1034
+
1035
+ **Inclusion Criteria:** Includes concepts that represent an encounter for psychiatric diagnostic evaluations.
1036
+
1037
+ **Exclusion Criteria:** Excludes concepts that represent an encounter for group psychotherapy or family psychotherapy visits.
1038
+ """
1039
+
1040
+ VALUE_SET_NAME = "Psych Visit Diagnostic Evaluation"
1041
+ OID = "2.16.840.1.113883.3.526.3.1492"
1042
+ DEFINITION_VERSION = "20190315"
1043
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1044
+
1045
+ CPT = {
1046
+ "90791", # Psychiatric diagnostic evaluation
1047
+ "90792", # Psychiatric diagnostic evaluation with medical services
1048
+ }
1049
+
1050
+ SNOMEDCT = {
1051
+ "10197000", # Psychiatric interview and evaluation (procedure)
1052
+ "165172002", # Diagnostic psychiatric interview (procedure)
1053
+ "68338001", # Interactive medical psychiatric diagnostic interview (procedure)
1054
+ "79094001", # Initial psychiatric interview with mental status and evaluation (procedure)
1055
+ }
1056
+
1057
+
1058
+ class Referral(ValueSet):
1059
+ """
1060
+ **Clinical Focus:** The purpose of this value set is to represent concepts of an encounter for a referral of a patient to a practitioner for evaluation, treatment or co-management of a patient's condition.
1061
+
1062
+ **Data Element Scope:** This value set may use a model element related to Intervention.
1063
+
1064
+ **Inclusion Criteria:** Includes concepts that represent an intervention for referrals and consultations.
1065
+
1066
+ **Exclusion Criteria:** Excludes concepts that represent self-referrals.
1067
+ """
1068
+
1069
+ VALUE_SET_NAME = "Referral"
1070
+ OID = "2.16.840.1.113883.3.464.1003.101.12.1046"
1071
+ DEFINITION_VERSION = "20170504"
1072
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1073
+
1074
+ SNOMEDCT = {
1075
+ "103696004", # Patient referral to specialist (procedure)
1076
+ "103697008", # Patient referral for dental care (procedure)
1077
+ "103698003", # Patient referral to non-physician provider (procedure)
1078
+ "103699006", # Referral to dietitian (procedure)
1079
+ "103704003", # Patient referral to sex therapist (procedure)
1080
+ "1186918003", # Referral to intellectual disability psychiatrist (procedure)
1081
+ "183515008", # Referral to physician (procedure)
1082
+ "183517000", # Referral to pediatrician (procedure)
1083
+ "183528001", # Referral to psychiatrist for the elderly mentally ill (procedure)
1084
+ "183529009", # Referral to oncologist (procedure)
1085
+ "183530004", # Referral to diabetologist (procedure)
1086
+ "183541002", # Referral to surgeon (procedure)
1087
+ "183555005", # Burns referral (procedure)
1088
+ "183557002", # Referral to cardiothoracic surgeon (procedure)
1089
+ "183561008", # Referral to general practitioner (procedure)
1090
+ "183567007", # Referral to hematologist (procedure)
1091
+ "183569005", # Refer to terminal care consult (procedure)
1092
+ "183583007", # Refer to mental health worker (procedure)
1093
+ "183591003", # Refer to partner (procedure)
1094
+ "183878008", # Private referral to general surgeon (procedure)
1095
+ "183879000", # Private referral to ophthalmologist (procedure)
1096
+ "183880002", # Private referral to ear, nose and throat surgeon (procedure)
1097
+ "183881003", # Private referral to orthopedic surgeon (procedure)
1098
+ "183882005", # Private referral to neurosurgeon (procedure)
1099
+ "183884006", # Private referral to pediatric surgeon (procedure)
1100
+ "183885007", # Private referral to obstetrician (procedure)
1101
+ "183886008", # Private referral to gynecologist (procedure)
1102
+ "183887004", # Private referral to plastic surgeon (procedure)
1103
+ "183888009", # Private referral to oral surgeon (procedure)
1104
+ "183889001", # Private referral to urologist (procedure)
1105
+ "183890005", # Private referral to thoracic surgeon (procedure)
1106
+ "183891009", # Private referral to vascular surgeon (procedure)
1107
+ "183892002", # Private referral to maxillofacial surgeon (procedure)
1108
+ "183893007", # Private referral cardiothoracic surgeon (procedure)
1109
+ "183894001", # Private referral to physician (procedure)
1110
+ "183895000", # Private referral to general physician (procedure)
1111
+ "183896004", # Private referral to pediatrician (procedure)
1112
+ "183897008", # Private referral to dermatologist (procedure)
1113
+ "183899006", # Private referral to cardiologist (procedure)
1114
+ "183900001", # Private referral to immunologist (procedure)
1115
+ "183901002", # Private referral to neurologist (procedure)
1116
+ "183902009", # Private referral to geriatrician (procedure)
1117
+ "183903004", # Private referral to gastroenterologist (procedure)
1118
+ "183904005", # Private referral to psychiatrist (procedure)
1119
+ "183905006", # Private referral to venereologist (procedure)
1120
+ "183906007", # Private referral to rheumatologist (procedure)
1121
+ "183907003", # Private referral to chest physician (procedure)
1122
+ "183908008", # Private referral to psychogeriatrician (procedure)
1123
+ "183909000", # Private referral to oncologist (procedure)
1124
+ "183910005", # Private referral to diabetologist (procedure)
1125
+ "183911009", # Private referral to radiotherapist (procedure)
1126
+ "183913007", # Private referral to geneticist (procedure)
1127
+ "183914001", # Private referral to anesthetist (procedure)
1128
+ "183915000", # Private referral to endocrinologist (procedure)
1129
+ "183916004", # Private referral to nephrologist (procedure)
1130
+ "266747000", # Referral to private doctor (procedure)
1131
+ "274410002", # Dental referral - child (procedure)
1132
+ "306241009", # Referral to audiological physician (procedure)
1133
+ "306242002", # Referral to audiological scientist (procedure)
1134
+ "306243007", # Referral to community doctor in audiology (procedure)
1135
+ "306245000", # Referral to hearing therapist (procedure)
1136
+ "306247008", # Referral to pediatric audiologist (procedure)
1137
+ "306250006", # Referral to genetic counselor (procedure)
1138
+ "306252003", # Referral to mental health counselor (procedure)
1139
+ "306253008", # Referral to doctor (procedure)
1140
+ "306254002", # Referral to Accident and Emergency doctor (procedure)
1141
+ "306255001", # Referral to anesthetist (procedure)
1142
+ "306256000", # Referral to radiotherapist (procedure)
1143
+ "306257009", # Referral to family planning doctor (procedure)
1144
+ "306258004", # Referral to intensive care specialist (procedure)
1145
+ "306259007", # Referral to adult intensive care specialist (procedure)
1146
+ "306260002", # Referral to pediatric intensive care specialist (procedure)
1147
+ "306261003", # Referral to community pediatrician (procedure)
1148
+ "306262005", # Referral to neonatologist (procedure)
1149
+ "306263000", # Referral to pediatric neurologist (procedure)
1150
+ "306264006", # Referral to pediatric oncologist (procedure)
1151
+ "306265007", # Referral to pain management specialist (procedure)
1152
+ "306266008", # Referral to pathologist (procedure)
1153
+ "306267004", # Referral to blood transfusion doctor (procedure)
1154
+ "306268009", # Referral to chemical pathologist (procedure)
1155
+ "306269001", # Referral to general pathologist (procedure)
1156
+ "306270000", # Referral to medical microbiologist (procedure)
1157
+ "306271001", # Referral to neuropathologist (procedure)
1158
+ "306272008", # Referral to clinical allergist (procedure)
1159
+ "306273003", # Referral to chest physician (procedure)
1160
+ "306275005", # Referral to respiratory physician (procedure)
1161
+ "306276006", # Referral to clinical neurophysiologist (procedure)
1162
+ "306277002", # Referral to clinical physiologist (procedure)
1163
+ "306278007", # Referral to endocrinologist (procedure)
1164
+ "306279004", # Referral to clinical geneticist (procedure)
1165
+ "306280001", # Referral to clinical cytogeneticist (procedure)
1166
+ "306281002", # Referral to clinical molecular geneticist (procedure)
1167
+ "306282009", # Referral to genitourinary physician (procedure)
1168
+ "306284005", # Referral to infectious diseases physician (procedure)
1169
+ "306285006", # Referral to medical ophthalmologist (procedure)
1170
+ "306286007", # Referral to nephrologist (procedure)
1171
+ "306287003", # Referral to nuclear medicine physician (procedure)
1172
+ "306288008", # Referral to palliative care physician (procedure)
1173
+ "306289000", # Referral to rehabilitation physician (procedure)
1174
+ "306290009", # Referral to rheumatologist (procedure)
1175
+ "306291008", # Referral to child and adolescent psychiatrist (procedure)
1176
+ "306293006", # Referral to liaison psychiatrist (procedure)
1177
+ "306295004", # Referral to rehabilitation psychiatrist (procedure)
1178
+ "306296003", # Referral to public health physician (procedure)
1179
+ "306297007", # Referral to obstetrician and gynecologist (procedure)
1180
+ "306298002", # Referral to occupational health physician (procedure)
1181
+ "306299005", # Referral to radiologist (procedure)
1182
+ "306300002", # Referral to breast surgeon (procedure)
1183
+ "306301003", # Referral to thoracic surgeon (procedure)
1184
+ "306302005", # Referral to cardiac surgeon (procedure)
1185
+ "306303000", # Referral to dental surgeon (procedure)
1186
+ "306304006", # Referral to orthodontist (procedure)
1187
+ "306305007", # Referral to pediatric dentist (procedure)
1188
+ "306306008", # Referral to restorative dentist (procedure)
1189
+ "306307004", # Referral to endocrine surgeon (procedure)
1190
+ "306308009", # Referral to gastrointestinal surgeon (procedure)
1191
+ "306309001", # Referral to general gastrointestinal surgeon (procedure)
1192
+ "306310006", # Referral to upper gastrointestinal surgeon (procedure)
1193
+ "306311005", # Referral to colorectal surgeon (procedure)
1194
+ "306312003", # Referral to hand surgeon (procedure)
1195
+ "306313008", # Referral to hepatobiliary surgeon (procedure)
1196
+ "306314002", # Referral to pancreatic surgeon (procedure)
1197
+ "306315001", # Referral to plastic surgeon (procedure)
1198
+ "306316000", # Referral to transplant surgeon (procedure)
1199
+ "306317009", # Referral to trauma surgeon (procedure)
1200
+ "306318004", # Referral to urologist (procedure)
1201
+ "306320001", # Referral to clinical nurse specialist (procedure)
1202
+ "306338003", # Referral to nurse practitioner (procedure)
1203
+ "306341007", # Referral to community-based midwife (procedure)
1204
+ "306342000", # Referral to hospital-based midwife (procedure)
1205
+ "306343005", # Referral to psychotherapist (procedure)
1206
+ "306351008", # Referral to community-based podiatrist (procedure)
1207
+ "306352001", # Referral to hospital-based podiatrist (procedure)
1208
+ "306353006", # Referral to community-based dietitian (procedure)
1209
+ "306354000", # Referral to hospital-based dietitian (procedure)
1210
+ "306355004", # Referral to community-based occupational therapist (procedure)
1211
+ "306356003", # Referral to social services department occupational therapist (procedure)
1212
+ "306357007", # Referral to hospital-based occupational therapist (procedure)
1213
+ "306358002", # Referral to community-based physiotherapist (procedure)
1214
+ "306359005", # Referral to hospital-based physiotherapist (procedure)
1215
+ "306360000", # Referral to community-based speech and language therapist (procedure)
1216
+ "306361001", # Referral to hospital-based speech and language therapist (procedure)
1217
+ "306736002", # Referral to general dental surgeon (procedure)
1218
+ "307063001", # Referral to clinical hematologist (procedure)
1219
+ "307777008", # Referral to vascular surgeon (procedure)
1220
+ "308439003", # Referral to midwife (procedure)
1221
+ "308447003", # Referral to physiotherapist (procedure)
1222
+ "308449000", # Referral to chiropractor (procedure)
1223
+ "308450000", # Referral to osteopath (procedure)
1224
+ "308451001", # Referral to podiatrist (procedure)
1225
+ "308452008", # Referral to speech and language therapist (procedure)
1226
+ "308453003", # Referral to occupational therapist (procedure)
1227
+ "308454009", # Referral to orthoptist (procedure)
1228
+ "308455005", # Referral to orthotist (procedure)
1229
+ "308456006", # Referral to audiologist (procedure)
1230
+ "308459004", # Referral to psychologist (procedure)
1231
+ "308465004", # Referral to optometrist (procedure)
1232
+ "308469005", # Referral to geneticist (procedure)
1233
+ "308470006", # Referral to general physician (procedure)
1234
+ "308471005", # Referral to cardiologist (procedure)
1235
+ "308472003", # Referral to dermatologist (procedure)
1236
+ "308473008", # Referral to clinical immunologist (procedure)
1237
+ "308474002", # Referral to neurologist (procedure)
1238
+ "308475001", # Referral to care of the elderly physician (procedure)
1239
+ "308476000", # Referral to gastroenterologist (procedure)
1240
+ "308477009", # Referral to psychiatrist (procedure)
1241
+ "308478004", # Referral to general surgeon (procedure)
1242
+ "308479007", # Referral to ophthalmologist (procedure)
1243
+ "308480005", # Referral to ear, nose and throat surgeon (procedure)
1244
+ "308481009", # Referral to orthopedic surgeon (procedure)
1245
+ "308482002", # Referral to neurosurgeon (procedure)
1246
+ "308483007", # Referral to pediatric surgeon (procedure)
1247
+ "308484001", # Referral to obstetrician (procedure)
1248
+ "308485000", # Referral to gynecologist (procedure)
1249
+ "309046007", # Private referral to surgeon (procedure)
1250
+ "309623006", # Child referral to optician (procedure)
1251
+ "309626003", # Child referral - school psychologist (procedure)
1252
+ "309627007", # Child referral - clinical psychologist (procedure)
1253
+ "309629005", # Child referral - community dentist (procedure)
1254
+ "310515004", # Referral to medical oncologist (procedure)
1255
+ "312487009", # Referral to pediatric cardiologist (procedure)
1256
+ "312488004", # Referral to community child health doctor (procedure)
1257
+ "390866009", # Referral to mental health team (procedure)
1258
+ "401266006", # Referral to drug abuse counselor (procedure)
1259
+ "406158007", # Referral to oral surgeon (procedure)
1260
+ "406159004", # Referral to maxillofacial surgeon (procedure)
1261
+ "408285001", # Referral to pediatric dietitian (procedure)
1262
+ "415277000", # Referral to pediatric endocrinologist (procedure)
1263
+ "416116000", # Referral to home registered dietitian (procedure)
1264
+ "416999007", # Private referral to physiotherapist (procedure)
1265
+ "425971006", # Referral to pediatric pulmonologist (procedure)
1266
+ "428441000124100", # Referral to nurse anesthetist (procedure)
1267
+ "428451000124103", # Referral to physician assistant (procedure)
1268
+ "428461000124101", # Referral to nutrition professional (procedure)
1269
+ "428471000124108", # Referral to clinical psychologist (procedure)
1270
+ "428481000124106", # Referral to clinical social worker (procedure)
1271
+ "428491000124109", # Referral to anesthesiologist assistant (procedure)
1272
+ "428541000124104", # Referral to nurse midwife (procedure)
1273
+ "429365000", # Referral to pediatric gastroenterologist (procedure)
1274
+ "433151006", # Referral to educational psychologist (procedure)
1275
+ "448761000124106", # Referral to endovascular specialist (procedure)
1276
+ "448771000124104", # Referral to prosthetist (procedure)
1277
+ "54395008", # Patient referral for medical consultation (procedure)
1278
+ "698563003", # Referral to bariatric surgeon (procedure)
1279
+ "698599008", # Private referral to breast surgeon (procedure)
1280
+ "703974003", # Private referral to colorectal surgeon (procedure)
1281
+ "703975002", # Private referral to podiatrist (procedure)
1282
+ "703976001", # Private referral to radiologist (procedure)
1283
+ "716634006", # Referral to neurological physiotherapist (procedure)
1284
+ }
1285
+
1286
+
1287
+ class NonInvasiveOxygenTherapyByNasalCannulaOrMask(ValueSet):
1288
+ """
1289
+ **Clinical Focus:** The purpose of this value set is to represent concepts for noninvasive oxygen therapy and oxygen administered by nasal cannula or mask.
1290
+
1291
+ **Data Element Scope:** This value set may use a model element related to Procedure.
1292
+
1293
+ **Inclusion Criteria:** Includes concepts that represent noninvasive oxygen therapy and oxygen administered by nasal cannula or mask and not associated with mechanical ventilation.
1294
+
1295
+ **Exclusion Criteria:** Invasive oxygen therapies associated with mechanical ventilation.
1296
+ """
1297
+
1298
+ VALUE_SET_NAME = "Non Invasive Oxygen Therapy by Nasal Cannula or Mask"
1299
+ OID = "2.16.840.1.113762.1.4.1248.209"
1300
+ DEFINITION_VERSION = "20240112"
1301
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1302
+
1303
+ SNOMEDCT = {
1304
+ "1259025002", # Heated and humidified high flow oxygen therapy using nasal cannula (procedure)
1305
+ "243136002", # Short-term oxygen therapy (procedure)
1306
+ "243137006", # Long-term oxygen therapy (procedure)
1307
+ "304577004", # Humidified oxygen therapy (procedure)
1308
+ "31253009", # Application of tracheostomy mask using jet humidifier (procedure)
1309
+ "315041000", # High concentration oxygen therapy (procedure)
1310
+ "371907003", # Oxygen administration by nasal cannula (procedure)
1311
+ "371908008", # Oxygen administration by mask (procedure)
1312
+ "429253002", # Oxygen administration by Venturi mask (procedure)
1313
+ "57485005", # Oxygen therapy (procedure)
1314
+ "71786000", # Intranasal oxygen therapy (procedure)
1315
+ "870533002", # Heated and humidified high flow oxygen therapy (procedure)
1316
+ }
1317
+
1318
+
1319
+ class FollowUpForAboveNormalBmi(ValueSet):
1320
+ """
1321
+ **Clinical Focus:** The purpose of this value set is to represent concepts for a follow-up for a body mass index (BMI) above normal measurement.
1322
+
1323
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
1324
+
1325
+ **Inclusion Criteria:** Includes concepts that represent a follow-up for above normal body mass index (BMI).
1326
+
1327
+ **Exclusion Criteria:** No exclusions.
1328
+ """
1329
+
1330
+ VALUE_SET_NAME = "Follow Up for Above Normal BMI"
1331
+ OID = "2.16.840.1.113883.3.600.1.1525"
1332
+ DEFINITION_VERSION = "20250201"
1333
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1334
+
1335
+ CPT = {
1336
+ "43644", # Laparoscopy, surgical, gastric restrictive procedure; with gastric bypass and Roux-en-Y gastroenterostomy (roux limb 150 cm or less)
1337
+ "43645", # Laparoscopy, surgical, gastric restrictive procedure; with gastric bypass and small intestine reconstruction to limit absorption
1338
+ "43659", # Unlisted laparoscopy procedure, stomach
1339
+ "43770", # Laparoscopy, surgical, gastric restrictive procedure; placement of adjustable gastric restrictive device (eg, gastric band and subcutaneous port components)
1340
+ "43771", # Laparoscopy, surgical, gastric restrictive procedure; revision of adjustable gastric restrictive device component only
1341
+ "43772", # Laparoscopy, surgical, gastric restrictive procedure; removal of adjustable gastric restrictive device component only
1342
+ "43773", # Laparoscopy, surgical, gastric restrictive procedure; removal and replacement of adjustable gastric restrictive device component only
1343
+ "43774", # Laparoscopy, surgical, gastric restrictive procedure; removal of adjustable gastric restrictive device and subcutaneous port components
1344
+ "43775", # Laparoscopy, surgical, gastric restrictive procedure; longitudinal gastrectomy (ie, sleeve gastrectomy)
1345
+ "43842", # Gastric restrictive procedure, without gastric bypass, for morbid obesity; vertical-banded gastroplasty
1346
+ "43843", # Gastric restrictive procedure, without gastric bypass, for morbid obesity; other than vertical-banded gastroplasty
1347
+ "43845", # Gastric restrictive procedure with partial gastrectomy, pylorus-preserving duodenoileostomy and ileoileostomy (50 to 100 cm common channel) to limit absorption (biliopancreatic diversion with duodenal switch)
1348
+ "43846", # Gastric restrictive procedure, with gastric bypass for morbid obesity; with short limb (150 cm or less) Roux-en-Y gastroenterostomy
1349
+ "43847", # Gastric restrictive procedure, with gastric bypass for morbid obesity; with small intestine reconstruction to limit absorption
1350
+ "43848", # Revision, open, of gastric restrictive procedure for morbid obesity, other than adjustable gastric restrictive device (separate procedure)
1351
+ "43886", # Gastric restrictive procedure, open; revision of subcutaneous port component only
1352
+ "43888", # Gastric restrictive procedure, open; removal and replacement of subcutaneous port component only
1353
+ "97802", # Medical nutrition therapy; initial assessment and intervention, individual, face-to-face with the patient, each 15 minutes
1354
+ "97803", # Medical nutrition therapy; re-assessment and intervention, individual, face-to-face with the patient, each 15 minutes
1355
+ "97804", # Medical nutrition therapy; group (2 or more individual(s)), each 30 minutes
1356
+ "98960", # Education and training for patient self-management by a nonphysician qualified health care professional using a standardized curriculum, face-to-face with the patient (could include caregiver/family) each 30 minutes; individual patient
1357
+ "99078", # Physician or other qualified health care professional qualified by education, training, licensure/regulation (when applicable) educational services rendered to patients in a group setting (eg, prenatal, obesity, or diabetic instructions)
1358
+ "99401", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 15 minutes
1359
+ "99402", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 30 minutes
1360
+ "99403", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 45 minutes
1361
+ "99404", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 60 minutes
1362
+ }
1363
+
1364
+ HCPCSLEVELII = {
1365
+ "G0270", # Medical nutrition therapy; reassessment and subsequent intervention(s) following second referral in same year for change in diagnosis, medical condition or treatment regimen (including additional hours needed for renal disease), individual, face to face with the patient, each 15 minutes
1366
+ "G0271", # Medical nutrition therapy, reassessment and subsequent intervention(s) following second referral in same year for change in diagnosis, medical condition, or treatment regimen (including additional hours needed for renal disease), group (2 or more individuals), each 30 minutes
1367
+ "G0447", # Face-to-face behavioral counseling for obesity, 15 minutes
1368
+ "G0473", # Face-to-face behavioral counseling for obesity, group (2-10), 30 minutes
1369
+ "S9449", # Weight management classes, non-physician provider, per session
1370
+ "S9451", # Exercise classes, non-physician provider, per session
1371
+ "S9452", # Nutrition classes, non-physician provider, per session
1372
+ "S9470", # Nutritional counseling, dietitian visit
1373
+ }
1374
+
1375
+ ICD10CM = {
1376
+ "Z713", # Dietary counseling and surveillance
1377
+ "Z7182", # Exercise counseling
1378
+ }
1379
+
1380
+ SNOMEDCT = {
1381
+ "11816003", # Diet education (procedure)
1382
+ "1230141004", # Education about nutrition influence on health (procedure)
1383
+ "1279742004", # Development of nutrition care plan (procedure)
1384
+ "1759002", # Assessment of nutritional status (procedure)
1385
+ "182922004", # Dietary regime (regime/therapy)
1386
+ "183059007", # High fiber diet education (procedure)
1387
+ "183060002", # Low residue diet education (procedure)
1388
+ "183061003", # Low fat diet education (procedure)
1389
+ "183062005", # Low cholesterol diet education (procedure)
1390
+ "183063000", # Low salt diet education (procedure)
1391
+ "183065007", # Low carbohydrate diet education (procedure)
1392
+ "183066008", # Low protein diet education (procedure)
1393
+ "183067004", # High protein diet education (procedure)
1394
+ "183070000", # Vegetarian diet education (procedure)
1395
+ "183071001", # Vegan diet education (procedure)
1396
+ "225387002", # Nutrient intake assessment (procedure)
1397
+ "225388007", # Dietary intake assessment (procedure)
1398
+ "226069004", # Review of current diet (procedure)
1399
+ "226074007", # Dietary intake assessment using food frequency questionnaire (procedure)
1400
+ "266724001", # Weight-reducing diet education (procedure)
1401
+ "268522006", # Obesity monitoring (regime/therapy)
1402
+ "281085002", # Sugar-free diet education (procedure)
1403
+ "284071006", # Dietary treatment for disorder (regime/therapy)
1404
+ "284350006", # Diabetes mellitus diet education (procedure)
1405
+ "284352003", # Obesity diet education (procedure)
1406
+ "304491008", # Dietary education for disorder (procedure)
1407
+ "304549008", # Giving encouragement to exercise (procedure)
1408
+ "307818003", # Weight monitoring (regime/therapy)
1409
+ "313076000", # Counseling for eating disorder (procedure)
1410
+ "370780002", # Assessment of psychosocial issues specific to patient nutritional status (procedure)
1411
+ "370847001", # Dietary needs education (procedure)
1412
+ "386264009", # Eating disorders management (procedure)
1413
+ "386291006", # Exercise promotion: strength training (procedure)
1414
+ "386292004", # Exercise promotion: stretching (procedure)
1415
+ "386373004", # Nutrition therapy (regime/therapy)
1416
+ "386374005", # Nutritional monitoring (regime/therapy)
1417
+ "386463000", # Prescribed activity/exercise education (procedure)
1418
+ "386464006", # Prescribed diet education (procedure)
1419
+ "410173005", # Dietary regime assessment (procedure)
1420
+ "410177006", # Special diet education (procedure)
1421
+ "410178001", # Special diet management (procedure)
1422
+ "413315001", # Nutrition / feeding management (regime/therapy)
1423
+ "418995006", # Feeding regime (regime/therapy)
1424
+ "419155003", # Recommendation to change diet (procedure)
1425
+ "424753004", # Dietary management education, guidance, and counseling (procedure)
1426
+ "427857000", # Dietary education for eating disorder (procedure)
1427
+ "428291006", # Dietary education for gastrointestinal tract disorder (procedure)
1428
+ "428461000124101", # Referral to nutrition professional (procedure)
1429
+ "435391000124108", # Hypertensive disorder diet management (procedure)
1430
+ "443288003", # Lifestyle education regarding diet (procedure)
1431
+ "445291000124103", # Nutrition-related skill education (procedure)
1432
+ "445301000124102", # Content-related nutrition education (procedure)
1433
+ "445641000124105", # Technical nutrition education (procedure)
1434
+ "61310001", # Nutrition education (procedure)
1435
+ "699829004", # High energy diet education (procedure)
1436
+ "710847006", # Assessment of dietary need (procedure)
1437
+ "710881000", # Education about eating pattern (procedure)
1438
+ "870194003", # Body mass index follow-up planning (procedure)
1439
+ }
1440
+
1441
+
1442
+ class FollowUpForBelowNormalBmi(ValueSet):
1443
+ """
1444
+ **Clinical Focus:** The purpose of this value set is to represent concepts for follow-up with a body mass index (BMI) below normal measurement.
1445
+
1446
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
1447
+
1448
+ **Inclusion Criteria:** Includes concepts that represent a follow-up for below normal body mass index (BMI).
1449
+
1450
+ **Exclusion Criteria:** No exclusions.
1451
+ """
1452
+
1453
+ VALUE_SET_NAME = "Follow Up for Below Normal BMI"
1454
+ OID = "2.16.840.1.113883.3.600.1.1528"
1455
+ DEFINITION_VERSION = "20200307"
1456
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1457
+
1458
+ CPT = {
1459
+ "97802", # Medical nutrition therapy; initial assessment and intervention, individual, face-to-face with the patient, each 15 minutes
1460
+ "97803", # Medical nutrition therapy; re-assessment and intervention, individual, face-to-face with the patient, each 15 minutes
1461
+ "97804", # Medical nutrition therapy; group (2 or more individual(s)), each 30 minutes
1462
+ "98960", # Education and training for patient self-management by a nonphysician qualified health care professional using a standardized curriculum, face-to-face with the patient (could include caregiver/family) each 30 minutes; individual patient
1463
+ "99078", # Physician or other qualified health care professional qualified by education, training, licensure/regulation (when applicable) educational services rendered to patients in a group setting (eg, prenatal, obesity, or diabetic instructions)
1464
+ "99401", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 15 minutes
1465
+ "99402", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 30 minutes
1466
+ "99403", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 45 minutes
1467
+ "99404", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 60 minutes
1468
+ }
1469
+
1470
+ HCPCSLEVELII = {
1471
+ "G0270", # Medical nutrition therapy; reassessment and subsequent intervention(s) following second referral in same year for change in diagnosis, medical condition or treatment regimen (including additional hours needed for renal disease), individual, face to face with the patient, each 15 minutes
1472
+ "G0271", # Medical nutrition therapy, reassessment and subsequent intervention(s) following second referral in same year for change in diagnosis, medical condition, or treatment regimen (including additional hours needed for renal disease), group (2 or more individuals), each 30 minutes
1473
+ "S9449", # Weight management classes, non-physician provider, per session
1474
+ "S9451", # Exercise classes, non-physician provider, per session
1475
+ "S9452", # Nutrition classes, non-physician provider, per session
1476
+ "S9470", # Nutritional counseling, dietitian visit
1477
+ }
1478
+
1479
+ ICD10CM = {
1480
+ "Z713", # Dietary counseling and surveillance
1481
+ "Z7182", # Exercise counseling
1482
+ }
1483
+
1484
+ SNOMEDCT = {
1485
+ "11816003", # Diet education (procedure)
1486
+ "1230141004", # Education about nutrition influence on health (procedure)
1487
+ "1279742004", # Development of nutrition care plan (procedure)
1488
+ "1759002", # Assessment of nutritional status (procedure)
1489
+ "182922004", # Dietary regime (regime/therapy)
1490
+ "225387002", # Nutrient intake assessment (procedure)
1491
+ "225388007", # Dietary intake assessment (procedure)
1492
+ "226069004", # Review of current diet (procedure)
1493
+ "226074007", # Dietary intake assessment using food frequency questionnaire (procedure)
1494
+ "284071006", # Dietary treatment for disorder (regime/therapy)
1495
+ "304491008", # Dietary education for disorder (procedure)
1496
+ "304549008", # Giving encouragement to exercise (procedure)
1497
+ "307818003", # Weight monitoring (regime/therapy)
1498
+ "313076000", # Counseling for eating disorder (procedure)
1499
+ "370780002", # Assessment of psychosocial issues specific to patient nutritional status (procedure)
1500
+ "370847001", # Dietary needs education (procedure)
1501
+ "386264009", # Eating disorders management (procedure)
1502
+ "386291006", # Exercise promotion: strength training (procedure)
1503
+ "386292004", # Exercise promotion: stretching (procedure)
1504
+ "386373004", # Nutrition therapy (regime/therapy)
1505
+ "386374005", # Nutritional monitoring (regime/therapy)
1506
+ "386463000", # Prescribed activity/exercise education (procedure)
1507
+ "386464006", # Prescribed diet education (procedure)
1508
+ "410173005", # Dietary regime assessment (procedure)
1509
+ "410177006", # Special diet education (procedure)
1510
+ "410178001", # Special diet management (procedure)
1511
+ "413315001", # Nutrition / feeding management (regime/therapy)
1512
+ "418995006", # Feeding regime (regime/therapy)
1513
+ "419155003", # Recommendation to change diet (procedure)
1514
+ "424753004", # Dietary management education, guidance, and counseling (procedure)
1515
+ "427857000", # Dietary education for eating disorder (procedure)
1516
+ "428291006", # Dietary education for gastrointestinal tract disorder (procedure)
1517
+ "428461000124101", # Referral to nutrition professional (procedure)
1518
+ "429095004", # Dietary education for weight gain (procedure)
1519
+ "443288003", # Lifestyle education regarding diet (procedure)
1520
+ "445291000124103", # Nutrition-related skill education (procedure)
1521
+ "445301000124102", # Content-related nutrition education (procedure)
1522
+ "445641000124105", # Technical nutrition education (procedure)
1523
+ "61310001", # Nutrition education (procedure)
1524
+ "699829004", # High energy diet education (procedure)
1525
+ "710847006", # Assessment of dietary need (procedure)
1526
+ "710881000", # Education about eating pattern (procedure)
1527
+ "870194003", # Body mass index follow-up planning (procedure)
1528
+ }
1529
+
1530
+
1531
+ class ReferralsWhereWeightAssessmentMayOccur(ValueSet):
1532
+ """
1533
+ **Clinical Focus:** The purpose of this value set is to represent concepts for a referral to multiple types of providers and settings for weight assessment.
1534
+
1535
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
1536
+
1537
+ **Inclusion Criteria:** Includes concepts that represent a referral to multiple types of providers and settings for weight assessment.
1538
+
1539
+ **Exclusion Criteria:** No exclusions.
1540
+ """
1541
+
1542
+ VALUE_SET_NAME = "Referrals Where Weight Assessment May Occur"
1543
+ OID = "2.16.840.1.113883.3.600.1.1527"
1544
+ DEFINITION_VERSION = "20170504"
1545
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1546
+
1547
+ SNOMEDCT = {
1548
+ "103699006", # Referral to dietitian (procedure)
1549
+ "183515008", # Referral to physician (procedure)
1550
+ "183523005", # Referral to gastroenterology service (procedure)
1551
+ "183524004", # Referral to psychiatry service (procedure)
1552
+ "183583007", # Refer to mental health worker (procedure)
1553
+ "183903004", # Private referral to gastroenterologist (procedure)
1554
+ "183904005", # Private referral to psychiatrist (procedure)
1555
+ "183908008", # Private referral to psychogeriatrician (procedure)
1556
+ "306117001", # Referral to clinical physiology service (procedure)
1557
+ "306136006", # Referral to liaison psychiatry service (procedure)
1558
+ "306163007", # Referral to dietetics service (procedure)
1559
+ "306164001", # Referral to community-based dietetics service (procedure)
1560
+ "306165000", # Referral to hospital-based dietetics service (procedure)
1561
+ "306166004", # Referral to occupational therapy service (procedure)
1562
+ "306167008", # Referral to community-based occupational therapy service (procedure)
1563
+ "306168003", # Referral to hospital-based occupational therapy service (procedure)
1564
+ "306170007", # Referral to physiotherapy service (procedure)
1565
+ "306171006", # Referral to community-based physiotherapy service (procedure)
1566
+ "306172004", # Referral to hospital-based physiotherapy service (procedure)
1567
+ "306226009", # Referral to mental health counseling service (procedure)
1568
+ "306227000", # Referral for mental health counseling (procedure)
1569
+ "306252003", # Referral to mental health counselor (procedure)
1570
+ "306344004", # Referral to professional allied to medicine (procedure)
1571
+ "306353006", # Referral to community-based dietitian (procedure)
1572
+ "306354000", # Referral to hospital-based dietitian (procedure)
1573
+ "306358002", # Referral to community-based physiotherapist (procedure)
1574
+ "306359005", # Referral to hospital-based physiotherapist (procedure)
1575
+ "308447003", # Referral to physiotherapist (procedure)
1576
+ "308459004", # Referral to psychologist (procedure)
1577
+ "308470006", # Referral to general physician (procedure)
1578
+ "308476000", # Referral to gastroenterologist (procedure)
1579
+ "308477009", # Referral to psychiatrist (procedure)
1580
+ "390864007", # Referral for exercise therapy (procedure)
1581
+ "390866009", # Referral to mental health team (procedure)
1582
+ "390893007", # Referral to physical activity program (procedure)
1583
+ "400973003", # Referral to eating disorders clinic (procedure)
1584
+ "400992001", # Refer to community physiotherapist (procedure)
1585
+ "408289007", # Refer to weight management program (procedure)
1586
+ "416790000", # Referral for home physical therapy (procedure)
1587
+ "416999007", # Private referral to physiotherapist (procedure)
1588
+ "444831000124102", # Referral for physical therapy (procedure)
1589
+ "710005006", # Referral to physical training instructor (procedure)
1590
+ "715962007", # Referral to sport and exercise medicine service (procedure)
1591
+ "770749002", # Referral for combined healthy eating and physical education program (procedure)
1592
+ "78429003", # Referral to physical rehabilitation service (procedure)
1593
+ }
1594
+
1595
+
1596
+ class DietitianReferral(ValueSet):
1597
+ """
1598
+ **Clinical Focus:** This set of values indicates that a dietitian referral was ordered.
1599
+
1600
+ **Data Element Scope:** Ordered dietitian referral.
1601
+
1602
+ **Inclusion Criteria:** Dietitian or dietetics services referral codes.
1603
+
1604
+ **Exclusion Criteria:** Referral orders for all other disciplines.
1605
+ """
1606
+
1607
+ VALUE_SET_NAME = "Dietitian Referral"
1608
+ OID = "2.16.840.1.113762.1.4.1095.91"
1609
+ DEFINITION_VERSION = "20241211"
1610
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1611
+
1612
+ SNOMEDCT = {
1613
+ "103699006", # Referral to dietitian (procedure)
1614
+ "306165000", # Referral to hospital-based dietetics service (procedure)
1615
+ "306354000", # Referral to hospital-based dietitian (procedure)
1616
+ "408285001", # Referral to pediatric dietitian (procedure)
1617
+ }
1618
+
1619
+
1620
+ class HospiceStatus(ValueSet):
1621
+ """
1622
+ **Clinical Focus:** This set of values indicates that a patient received hospice care.
1623
+
1624
+ **Data Element Scope:** This set of values indicates that a patient received hospice care.
1625
+
1626
+ **Inclusion Criteria:** Terms related to patients receiving hospice care
1627
+
1628
+ **Exclusion Criteria:** Terms other than those related to patients receiving hospice care.
1629
+ """
1630
+
1631
+ VALUE_SET_NAME = "Hospice Status"
1632
+ OID = "2.16.840.1.113762.1.4.1095.101"
1633
+ DEFINITION_VERSION = "20241004"
1634
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1635
+
1636
+ SNOMEDCT = {
1637
+ "182964004", # Terminal care (regime/therapy)
1638
+ "385763009", # Hospice care (regime/therapy)
1639
+ }
1640
+
1641
+
1642
+ class NutritionCarePlan(ValueSet):
1643
+ """
1644
+ **Clinical Focus:** Data supporting that an plan of care for nutrition was completed.
1645
+
1646
+ **Data Element Scope:** Nutrition intervention (procedure or regime/therapy) data elements for optimal nutrition care.
1647
+
1648
+ **Inclusion Criteria:** Data elements to indicate nutrition and dietetics professional created a nutrition care plan.
1649
+
1650
+ **Exclusion Criteria:** Nutrition screening, assessment, or diagnosis data elements.
1651
+ """
1652
+
1653
+ VALUE_SET_NAME = "Nutrition Care Plan"
1654
+ OID = "2.16.840.1.113762.1.4.1095.93"
1655
+ DEFINITION_VERSION = "20240117"
1656
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
1657
+
1658
+ SNOMEDCT = {
1659
+ "1279742004", # Development of nutrition care plan (procedure)
1660
+ "386372009", # Nutrition management (regime/therapy)
1661
+ "386373004", # Nutrition therapy (regime/therapy)
1662
+ "410172000", # Nutrition care management (procedure)
1663
+ "410175003", # Dietary regime management (procedure)
1664
+ "413315001", # Nutrition / feeding management (regime/therapy)
1665
+ "445101000124100", # Collaborating in nutrition therapy (procedure)
1666
+ }
1667
+
1668
+
1669
+ __exports__ = (
1670
+ "HospiceCareAmbulatory",
1671
+ "PalliativeCareIntervention",
1672
+ "ComfortMeasures",
1673
+ "PsychVisitPsychotherapy",
1674
+ "SubstanceUseDisorderTreatment",
1675
+ "TobaccoUseCessationCounseling",
1676
+ "CognitiveAssessment",
1677
+ "CounselingForNutrition",
1678
+ "CounselingForPhysicalActivity",
1679
+ "DietaryRecommendations",
1680
+ "FollowUpWithin4Weeks",
1681
+ "FollowUpWithin6Months",
1682
+ "LifestyleRecommendation",
1683
+ "RecommendationToIncreasePhysicalActivity",
1684
+ "ReferralOrCounselingForAlcoholConsumption",
1685
+ "ReferralToPrimaryCareOrAlternateProvider",
1686
+ "WeightReductionRecommended",
1687
+ "FollowUpForAdolescentDepression",
1688
+ "FollowUpForAdultDepression",
1689
+ "ReferralForAdolescentDepression",
1690
+ "ReferralForAdultDepression",
1691
+ "OpioidMedicationAssistedTreatmentMat",
1692
+ "PalliativeOrHospiceCare",
1693
+ "BehavioralOrNeuropsychAssessment",
1694
+ "PsychVisitDiagnosticEvaluation",
1695
+ "Referral",
1696
+ "NonInvasiveOxygenTherapyByNasalCannulaOrMask",
1697
+ "FollowUpForAboveNormalBmi",
1698
+ "FollowUpForBelowNormalBmi",
1699
+ "ReferralsWhereWeightAssessmentMayOccur",
1700
+ "DietitianReferral",
1701
+ "HospiceStatus",
1702
+ "NutritionCarePlan",
1703
+ )