canvas 0.1.15__py3-none-any.whl → 0.2.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of canvas might be problematic. Click here for more details.

Files changed (94) hide show
  1. {canvas-0.1.15.dist-info → canvas-0.2.10.dist-info}/METADATA +7 -1
  2. canvas-0.2.10.dist-info/RECORD +143 -0
  3. canvas_cli/apps/plugin/plugin.py +51 -9
  4. canvas_cli/apps/plugin/tests.py +51 -0
  5. canvas_cli/tests.py +193 -4
  6. canvas_cli/utils/validators/manifest_schema.py +1 -0
  7. canvas_generated/messages/effects_pb2.py +2 -2
  8. canvas_generated/messages/effects_pb2.pyi +138 -0
  9. canvas_generated/messages/events_pb2.py +3 -3
  10. canvas_generated/messages/events_pb2.pyi +616 -0
  11. canvas_sdk/__init__.py +7 -0
  12. canvas_sdk/base.py +6 -2
  13. canvas_sdk/commands/__init__.py +26 -0
  14. canvas_sdk/commands/base.py +35 -32
  15. canvas_sdk/commands/commands/allergy.py +49 -0
  16. canvas_sdk/commands/commands/assess.py +1 -1
  17. canvas_sdk/commands/commands/close_goal.py +22 -0
  18. canvas_sdk/commands/commands/diagnose.py +3 -3
  19. canvas_sdk/commands/commands/family_history.py +18 -0
  20. canvas_sdk/commands/commands/goal.py +3 -3
  21. canvas_sdk/commands/commands/history_present_illness.py +1 -1
  22. canvas_sdk/commands/commands/instruct.py +17 -0
  23. canvas_sdk/commands/commands/lab_order.py +33 -0
  24. canvas_sdk/commands/commands/medical_history.py +34 -0
  25. canvas_sdk/commands/commands/medication_statement.py +1 -1
  26. canvas_sdk/commands/commands/past_surgical_history.py +28 -0
  27. canvas_sdk/commands/commands/perform.py +17 -0
  28. canvas_sdk/commands/commands/plan.py +2 -2
  29. canvas_sdk/commands/commands/prescribe.py +10 -7
  30. canvas_sdk/commands/commands/questionnaire.py +1 -1
  31. canvas_sdk/commands/commands/refill.py +16 -0
  32. canvas_sdk/commands/commands/remove_allergy.py +26 -0
  33. canvas_sdk/commands/commands/stop_medication.py +1 -1
  34. canvas_sdk/commands/commands/task.py +52 -0
  35. canvas_sdk/commands/commands/update_diagnosis.py +27 -0
  36. canvas_sdk/commands/commands/update_goal.py +1 -1
  37. canvas_sdk/commands/commands/vitals.py +78 -0
  38. canvas_sdk/commands/constants.py +7 -0
  39. canvas_sdk/commands/tests/protocol/__init__.py +0 -0
  40. canvas_sdk/commands/tests/protocol/tests.py +55 -0
  41. canvas_sdk/commands/tests/schema/__init__.py +0 -0
  42. canvas_sdk/commands/tests/schema/tests.py +104 -0
  43. canvas_sdk/commands/tests/test_utils.py +170 -6
  44. canvas_sdk/commands/tests/unit/__init__.py +0 -0
  45. canvas_sdk/commands/tests/{tests.py → unit/tests.py} +20 -194
  46. canvas_sdk/data/client.py +82 -0
  47. canvas_sdk/data/patient.py +1 -21
  48. canvas_sdk/effects/banner_alert/add_banner_alert.py +8 -7
  49. canvas_sdk/effects/banner_alert/remove_banner_alert.py +3 -2
  50. canvas_sdk/effects/banner_alert/tests.py +224 -0
  51. canvas_sdk/effects/base.py +3 -5
  52. canvas_sdk/effects/patient_chart_summary_configuration.py +39 -0
  53. canvas_sdk/effects/protocol_card/__init__.py +1 -0
  54. canvas_sdk/effects/protocol_card/protocol_card.py +83 -0
  55. canvas_sdk/effects/protocol_card/tests.py +184 -0
  56. canvas_sdk/handlers/base.py +14 -1
  57. canvas_sdk/protocols/base.py +14 -0
  58. canvas_sdk/protocols/clinical_quality_measure.py +41 -0
  59. canvas_sdk/utils/db.py +17 -0
  60. canvas_sdk/v1/__init__.py +0 -0
  61. canvas_sdk/v1/data/__init__.py +3 -0
  62. canvas_sdk/v1/data/allergy_intolerance.py +63 -0
  63. canvas_sdk/v1/data/base.py +47 -0
  64. canvas_sdk/v1/data/condition.py +48 -0
  65. canvas_sdk/v1/data/lab.py +96 -0
  66. canvas_sdk/v1/data/medication.py +54 -0
  67. canvas_sdk/v1/data/patient.py +49 -0
  68. canvas_sdk/v1/data/user.py +10 -0
  69. canvas_sdk/value_set/tests/test_value_sets.py +65 -0
  70. canvas_sdk/value_set/v2022/adverse_event.py +33 -0
  71. canvas_sdk/value_set/v2022/allergy.py +232 -0
  72. canvas_sdk/value_set/v2022/assessment.py +215 -0
  73. canvas_sdk/value_set/v2022/communication.py +325 -0
  74. canvas_sdk/value_set/v2022/condition.py +40654 -0
  75. canvas_sdk/value_set/v2022/device.py +174 -0
  76. canvas_sdk/value_set/v2022/diagnostic_study.py +4967 -0
  77. canvas_sdk/value_set/v2022/encounter.py +2564 -0
  78. canvas_sdk/value_set/v2022/immunization.py +341 -0
  79. canvas_sdk/value_set/v2022/individual_characteristic.py +307 -0
  80. canvas_sdk/value_set/v2022/intervention.py +1356 -0
  81. canvas_sdk/value_set/v2022/laboratory_test.py +1250 -0
  82. canvas_sdk/value_set/v2022/medication.py +5130 -0
  83. canvas_sdk/value_set/v2022/physical_exam.py +201 -0
  84. canvas_sdk/value_set/v2022/procedure.py +4037 -0
  85. canvas_sdk/value_set/v2022/symptom.py +176 -0
  86. canvas_sdk/value_set/value_set.py +91 -0
  87. canvas-0.1.15.dist-info/RECORD +0 -95
  88. canvas_generated/data_access_layer/data_access_layer_pb2.py +0 -30
  89. canvas_generated/data_access_layer/data_access_layer_pb2.pyi +0 -23
  90. canvas_generated/data_access_layer/data_access_layer_pb2_grpc.py +0 -66
  91. canvas_sdk/data/data_access_layer_client.py +0 -95
  92. canvas_sdk/data/exceptions.py +0 -16
  93. {canvas-0.1.15.dist-info → canvas-0.2.10.dist-info}/WHEEL +0 -0
  94. {canvas-0.1.15.dist-info → canvas-0.2.10.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,1356 @@
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:** CMS90v11, CMS134v10, CMS165v10, CMS146v10, CMS124v10, CMS139v10, CMS154v10, CMS56v10, CMS74v11, CMS75v10, CMS137v10, CMS136v11, CMS128v10, CMS122v10, CMS153v10, CMS66v10, CMS130v10, CMS155v10, CMS127v10, CMS117v10, CMS131v10, CMS156v10, CMS125v10
15
+ """
16
+
17
+ VALUE_SET_NAME = "Hospice care ambulatory"
18
+ OID = "2.16.840.1.113762.1.4.1108.15"
19
+ DEFINITION_VERSION = "20170504"
20
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
21
+
22
+ SNOMEDCT = {
23
+ "385763009", # Hospice care (regime/therapy)
24
+ "385765002", # Hospice care management (procedure)
25
+ }
26
+
27
+
28
+ class PalliativeCareIntervention(ValueSet):
29
+ """
30
+ **Clinical Focus:** The purpose of this value set is to represent concepts for palliative care interventions.
31
+
32
+ **Data Element Scope:** This value set may use a model element related to Intervention.
33
+
34
+ **Inclusion Criteria:** Includes concepts that represent palliative care interventions, including procedures and regime/therapy provided as part of palliative care services.
35
+
36
+ **Exclusion Criteria:** Excludes concepts that represent an intervention for hospice.
37
+
38
+ ** Used in:** CMS134v10, CMS165v10, CMS131v10, CMS122v10, CMS124v10, CMS156v10, CMS125v10, CMS130v10
39
+ """
40
+
41
+ VALUE_SET_NAME = "Palliative Care Intervention"
42
+ OID = "2.16.840.1.113883.3.464.1003.198.12.1135"
43
+ DEFINITION_VERSION = "20210224"
44
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
45
+
46
+ SNOMEDCT = {
47
+ "103735009", # Palliative care (regime/therapy)
48
+ "105402000", # Visit of patient by chaplain during palliative care (regime/therapy)
49
+ "395669003", # Specialist palliative care treatment (regime/therapy)
50
+ "395670002", # Specialist palliative care treatment - inpatient (regime/therapy)
51
+ "395694002", # Specialist palliative care treatment - daycare (regime/therapy)
52
+ "395695001", # Specialist palliative care treatment - outpatient (regime/therapy)
53
+ "443761007", # Anticipatory palliative care (regime/therapy)
54
+ "1841000124106", # Palliative care medication review (procedure)
55
+ "433181000124107", # Documentation of palliative care medication action plan (procedure)
56
+ }
57
+
58
+
59
+ class DialysisEducation(ValueSet):
60
+ """
61
+ **Clinical Focus:** The purpose of this value set is to represent concepts for dialysis education.
62
+
63
+ **Data Element Scope:** This value set may use a model element related to Intervention.
64
+
65
+ **Inclusion Criteria:** Includes concepts that represent dialysis education.
66
+
67
+ **Exclusion Criteria:** No exclusions.
68
+
69
+ ** Used in:** CMS134v10
70
+ """
71
+
72
+ VALUE_SET_NAME = "Dialysis Education"
73
+ OID = "2.16.840.1.113883.3.464.1003.109.12.1016"
74
+ DEFINITION_VERSION = "20170504"
75
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
76
+
77
+ SNOMEDCT = {
78
+ "28812006", # Hemodialysis education (procedure)
79
+ "59596005", # Hemodialysis education at home (procedure)
80
+ "66402002", # Peritoneal dialysis education (procedure)
81
+ "385972005", # Dialysis care education (procedure)
82
+ }
83
+
84
+
85
+ class OtherServicesRelatedToDialysis(ValueSet):
86
+ """
87
+ **Clinical Focus:** The purpose of this value set is to represent concepts for services related to dialysis.
88
+
89
+ **Data Element Scope:** This value set may use a model element related to Intervention.
90
+
91
+ **Inclusion Criteria:** Includes concepts that represent an intervention related to dialysis, including care planning, catheter maintenance and care assessment and management.
92
+
93
+ **Exclusion Criteria:** No exclusions.
94
+
95
+ ** Used in:** CMS134v10
96
+ """
97
+
98
+ VALUE_SET_NAME = "Other Services Related to Dialysis"
99
+ OID = "2.16.840.1.113883.3.464.1003.109.12.1015"
100
+ DEFINITION_VERSION = "20170504"
101
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
102
+
103
+ SNOMEDCT = {
104
+ "3257008", # Empty and measure peritoneal dialysis fluid (procedure)
105
+ "73257006", # Peritoneal dialysis catheter maintenance (procedure)
106
+ "233591003", # Hemoperfusion (procedure)
107
+ "385970002", # Dialysis care assessment (procedure)
108
+ "385971003", # Dialysis care (regime/therapy)
109
+ "385973000", # Dialysis care management (procedure)
110
+ "406168002", # Dialysis access maintenance (regime/therapy)
111
+ "717738008", # Peritoneal dialysis care assessment (procedure)
112
+ "718019005", # Hemodialysis care management (procedure)
113
+ "718308002", # Peritoneal dialysis care (regime/therapy)
114
+ "718330001", # Hemodialysis care (regime/therapy)
115
+ "718331002", # Hemodialysis care assessment (procedure)
116
+ "251000124108", # Dialysis care plan (regime/therapy)
117
+ "311000124103", # Peritoneal dialysis care plan (regime/therapy)
118
+ }
119
+
120
+
121
+ class AlcoholAndDrugDependenceTreatment(ValueSet):
122
+ """
123
+ **Clinical Focus:** The purpose of this value set is to represent concepts for encounters for alcohol and drug dependence treatment.
124
+
125
+ **Data Element Scope:** This value set may use a model element related to Intervention.
126
+
127
+ **Inclusion Criteria:** Includes concepts that represent an encounter for alcohol and drug abuse and dependence treatment.
128
+
129
+ **Exclusion Criteria:** No exclusions.
130
+
131
+ ** Used in:** CMS137v10
132
+ """
133
+
134
+ VALUE_SET_NAME = "Alcohol and Drug Dependence Treatment"
135
+ OID = "2.16.840.1.113883.3.464.1003.106.12.1005"
136
+ DEFINITION_VERSION = "20210220"
137
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
138
+
139
+ HCPCSLEVELII = {
140
+ "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)
141
+ "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)
142
+ "G2069", # Medication assisted treatment, buprenorphine (injectable); 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)
143
+ "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)
144
+ "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)
145
+ "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)
146
+ "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)
147
+ "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)
148
+ "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)
149
+ "G2076", # Intake activities, including initial medical examination that is a complete, fully documented physical evaluation and initial assessment by a program physician or a primary care physician, or an authorized healthcare professional under the supervision of a program physician qualified personnel that includes preparation of a treatment plan that includes the patient's short-term goals and the tasks the patient must perform to complete the short-term goals; the patient's requirements for education, vocational rehabilitation, and employment; and the medical, psycho- social, economic, legal, or other supportive services that a patient needs, conducted by qualified personnel (provision of the services by a medicare-enrolled opioid treatment program); list separately in addition to code for primary procedure
150
+ "G2077", # Periodic assessment; assessing periodically by qualified personnel to determine the most appropriate combination of services and treatment (provision of the services by a medicare-enrolled opioid treatment program); list separately in addition to code for primary procedure
151
+ "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
152
+ "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
153
+ "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
154
+ "H0020", # Alcohol and/or drug services; methadone administration and/or service (provision of the drug by a licensed program)
155
+ "H0033", # Oral medication administration, direct observation
156
+ }
157
+ SNOMEDCT = {
158
+ "20093000", # Alcohol rehabilitation and detoxification (regime/therapy)
159
+ "23915005", # Combined alcohol and drug rehabilitation and detoxification (regime/therapy)
160
+ "24165007", # Alcoholism counseling (procedure)
161
+ "56876005", # Drug rehabilitation and detoxification (regime/therapy)
162
+ "60112009", # Drug addiction counseling (procedure)
163
+ "171047005", # Drugs of addiction education (procedure)
164
+ "266707007", # Drug addiction therapy (regime/therapy)
165
+ "310653000", # Drug addiction therapy using methadone (regime/therapy)
166
+ "313071005", # Counseling for substance abuse (procedure)
167
+ "370881007", # Abuse prevention assessment (procedure)
168
+ "370884004", # Abuse prevention management (procedure)
169
+ "385989002", # Substance use therapy (regime/therapy)
170
+ "386448003", # Substance use prevention (procedure)
171
+ "386449006", # Substance use treatment: alcohol withdrawal (regime/therapy)
172
+ "386450006", # Substance use treatment: drug withdrawal (regime/therapy)
173
+ "386451005", # Substance use treatment: overdose (regime/therapy)
174
+ "408933008", # Substance abuse prevention (procedure)
175
+ "408934002", # Substance abuse prevention assessment (procedure)
176
+ "408935001", # Substance abuse prevention education (procedure)
177
+ "408936000", # Substance abuse prevention management (procedure)
178
+ "408941008", # Drug abuse prevention (procedure)
179
+ "408942001", # Drug abuse prevention assessment (procedure)
180
+ "408943006", # Drug abuse prevention education (procedure)
181
+ "408944000", # Drug abuse prevention management (procedure)
182
+ "408945004", # Alcohol abuse prevention (procedure)
183
+ "408947007", # Alcohol abuse prevention education (procedure)
184
+ "408948002", # Alcohol abuse prevention management (procedure)
185
+ "410419007", # Substance use surveillance (regime/therapy)
186
+ "413473000", # Counseling about alcohol consumption (procedure)
187
+ "423416000", # Substance use cessation case management (procedure)
188
+ "424148004", # Substance use cessation surveillance (regime/therapy)
189
+ "424407005", # Substance use cessation education, guidance, and counseling (procedure)
190
+ "424589009", # Substance use treatment: cessation (regime/therapy)
191
+ "426928008", # Prevention of opioid abuse (procedure)
192
+ "707166002", # Alcohol reduction program (regime/therapy)
193
+ "720174008", # Drug harm reduction program (regime/therapy)
194
+ "720175009", # Alcohol harm reduction program (regime/therapy)
195
+ "720176005", # Alcohol relapse prevention program (regime/therapy)
196
+ "720177001", # Drug relapse prevention program (regime/therapy)
197
+ "737363002", # Alcohol abuse surveillance (regime/therapy)
198
+ "792901003", # Drug addiction therapy using buprenorphine (regime/therapy)
199
+ "792902005", # Drug addiction therapy using buprenorphine and naloxone (regime/therapy)
200
+ "429291000124102", # Alcohol brief intervention (procedure)
201
+ }
202
+
203
+
204
+ class PsychVisitPsychotherapy(ValueSet):
205
+ """
206
+ **Clinical Focus:** The purpose of this value set is to represent concepts for encounters for psychotherapy visits.
207
+
208
+ **Data Element Scope:** This value set may use a model element related to Encounter.
209
+
210
+ **Inclusion Criteria:** Includes concepts that represent an encounter for individual psychotherapy services.
211
+
212
+ **Exclusion Criteria:** Excludes concepts that represent an encounter for group psychotherapy or family psychotherapy visits.
213
+
214
+ ** Used in:** CMS137v10
215
+ """
216
+
217
+ VALUE_SET_NAME = "Psych Visit - Psychotherapy"
218
+ OID = "2.16.840.1.113883.3.526.3.1496"
219
+ DEFINITION_VERSION = "20190315"
220
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
221
+
222
+ CPT = {
223
+ "90832", # Psychotherapy, 30 minutes with patient
224
+ "90834", # Psychotherapy, 45 minutes with patient
225
+ "90837", # Psychotherapy, 60 minutes with patient
226
+ }
227
+ SNOMEDCT = {
228
+ "18512000", # Individual psychotherapy (regime/therapy)
229
+ "38678006", # Client-centered psychotherapy (regime/therapy)
230
+ "75516001", # Psychotherapy (regime/therapy)
231
+ "90102008", # Social psychotherapy (regime/therapy)
232
+ "183381005", # General psychotherapy (regime/therapy)
233
+ "183382003", # Psychotherapy - behavioral (regime/therapy)
234
+ "183383008", # Psychotherapy - cognitive (regime/therapy)
235
+ "302242004", # Long-term psychodynamic psychotherapy (regime/therapy)
236
+ "304820009", # Developmental psychodynamic psychotherapy (regime/therapy)
237
+ "304822001", # Psychodynamic-interpersonal psychotherapy (regime/therapy)
238
+ "314034001", # Psychodynamic psychotherapy (regime/therapy)
239
+ "401157001", # Brief solution focused psychotherapy (regime/therapy)
240
+ "443730003", # Interpersonal psychotherapy (regime/therapy)
241
+ }
242
+
243
+
244
+ class TobaccoUseCessationCounseling(ValueSet):
245
+ """
246
+ **Clinical Focus:** The purpose of this value set is to represent concepts for tobacco cessation counseling.
247
+
248
+ **Data Element Scope:** This value set may use a model element related to Intervention.
249
+
250
+ **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.
251
+
252
+ **Exclusion Criteria:** No exclusions.
253
+
254
+ ** Used in:** CMS138v10
255
+ """
256
+
257
+ VALUE_SET_NAME = "Tobacco Use Cessation Counseling"
258
+ OID = "2.16.840.1.113883.3.526.3.509"
259
+ DEFINITION_VERSION = "20170504"
260
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
261
+
262
+ CPT = {
263
+ "99406", # Smoking and tobacco use cessation counseling visit; intermediate, greater than 3 minutes up to 10 minutes
264
+ "99407", # Smoking and tobacco use cessation counseling visit; intensive, greater than 10 minutes
265
+ }
266
+ SNOMEDCT = {
267
+ "171055003", # Pregnancy smoking education (procedure)
268
+ "185795007", # Stop smoking monitoring verbal invite (procedure)
269
+ "185796008", # Stop smoking monitoring telephone invite (procedure)
270
+ "225323000", # Smoking cessation education (procedure)
271
+ "225324006", # Smoking effects education (procedure)
272
+ "310429001", # Smoking monitoring invitation (procedure)
273
+ "315232003", # Referral to stop-smoking clinic (procedure)
274
+ "384742004", # Smoking cessation assistance (regime/therapy)
275
+ "395700008", # Referral to smoking cessation advisor (procedure)
276
+ "702388001", # Tobacco use cessation education (procedure)
277
+ "710081004", # Smoking cessation therapy (regime/therapy)
278
+ "711028002", # Counseling about tobacco use (procedure)
279
+ "713700008", # Smoking cessation drug therapy (regime/therapy)
280
+ "449841000124108", # Referral to tobacco use cessation clinic (procedure)
281
+ "449851000124105", # Referral to tobacco use cessation counselor (procedure)
282
+ "449861000124107", # Referral to tobacco use cessation counseling program (procedure)
283
+ "449871000124100", # Referral to tobacco use quit line (procedure)
284
+ }
285
+
286
+
287
+ class CognitiveAssessment(ValueSet):
288
+ """
289
+ **Clinical Focus:** The purpose of this value set is to represent concepts for assessments performed for the evaluation of cognition.
290
+
291
+ **Data Element Scope:** This value set may use a model element related to Intervention.
292
+
293
+ **Inclusion Criteria:** Includes concepts that describe assessments for evaluation of cognition.
294
+
295
+ **Exclusion Criteria:** Excludes concepts that identify specific standardized tools used to evaluate cognition.
296
+
297
+ ** Used in:** CMS149v10
298
+ """
299
+
300
+ VALUE_SET_NAME = "Cognitive Assessment"
301
+ OID = "2.16.840.1.113883.3.526.3.1332"
302
+ DEFINITION_VERSION = "20170504"
303
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
304
+
305
+ SNOMEDCT = {
306
+ "4719001", # Psychologic cognitive testing and assessment (procedure)
307
+ "113024001", # Assessment and interpretation of higher cerebral function, cognitive testing (procedure)
308
+ }
309
+
310
+
311
+ class CounselingForNutrition(ValueSet):
312
+ """
313
+ **Clinical Focus:** The purpose of this value set is to represent concepts for nutrition counseling interventions.
314
+
315
+ **Data Element Scope:** This value set may use a model element related to Intervention.
316
+
317
+ **Inclusion Criteria:** Includes concepts that represent counseling for nutrition, including medical nutrition therapy, dietetic services, diet education, and weight loss management.
318
+
319
+ **Exclusion Criteria:** No exclusions.
320
+
321
+ ** Used in:** CMS155v10
322
+ """
323
+
324
+ VALUE_SET_NAME = "Counseling for Nutrition"
325
+ OID = "2.16.840.1.113883.3.464.1003.195.12.1003"
326
+ DEFINITION_VERSION = "20170504"
327
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
328
+
329
+ CPT = {
330
+ "97802", # Medical nutrition therapy; initial assessment and intervention, individual, face-to-face with the patient, each 15 minutes
331
+ "97803", # Medical nutrition therapy; re-assessment and intervention, individual, face-to-face with the patient, each 15 minutes
332
+ "97804", # Medical nutrition therapy; group (2 or more individual(s)), each 30 minutes
333
+ }
334
+ SNOMEDCT = {
335
+ "11816003", # Diet education (procedure)
336
+ "61310001", # Nutrition education (procedure)
337
+ "183059007", # High fiber diet education (procedure)
338
+ "183060002", # Low residue diet education (procedure)
339
+ "183061003", # Low fat diet education (procedure)
340
+ "183062005", # Low cholesterol diet education (procedure)
341
+ "183063000", # Low salt diet education (procedure)
342
+ "183065007", # Low carbohydrate diet education (procedure)
343
+ "183066008", # Low protein diet education (procedure)
344
+ "183067004", # High protein diet education (procedure)
345
+ "183070000", # Vegetarian diet education (procedure)
346
+ "183071001", # Vegan diet education (procedure)
347
+ "226067002", # Food hygiene education (procedure)
348
+ "266724001", # Weight-reducing diet education (procedure)
349
+ "275919002", # Weight loss advised (situation)
350
+ "281085002", # Sugar-free diet education (procedure)
351
+ "284352003", # Obesity diet education (procedure)
352
+ "305849009", # Seen by dietetics service (finding)
353
+ "305850009", # Seen by community-based dietetics service (finding)
354
+ "305851008", # Seen by hospital-based dietetics service (finding)
355
+ "306163007", # Referral to dietetics service (procedure)
356
+ "306164001", # Referral to community-based dietetics service (procedure)
357
+ "306165000", # Referral to hospital-based dietetics service (procedure)
358
+ "306626002", # Discharge from dietetics service (procedure)
359
+ "306627006", # Discharge from hospital dietetics service (procedure)
360
+ "306628001", # Discharge from community dietetics service (procedure)
361
+ "313210009", # Fluid intake education (procedure)
362
+ "370847001", # Dietary needs education (procedure)
363
+ "386464006", # Prescribed diet education (procedure)
364
+ "404923009", # Weight gain advised (situation)
365
+ "408910007", # Enteral feeding education (procedure)
366
+ "410171007", # Nutrition care education (procedure)
367
+ "410177006", # Special diet education (procedure)
368
+ "410200000", # Weight control education (procedure)
369
+ "429095004", # Dietary education for weight gain (procedure)
370
+ "431482008", # Dietary education for competitive athlete (procedure)
371
+ "443288003", # Lifestyle education regarding diet (procedure)
372
+ "609104008", # Educated about weight management (situation)
373
+ "698471002", # Patient advised about weight management (situation)
374
+ "699827002", # Dietary education about fluid restriction (procedure)
375
+ "699829004", # High energy diet education (procedure)
376
+ "699830009", # Food fortification education (procedure)
377
+ "699849008", # Healthy eating education (procedure)
378
+ "700154005", # Seen in weight management clinic (finding)
379
+ "700258004", # Dietary education about vitamin intake (procedure)
380
+ "705060005", # Diet education about mineral intake (procedure)
381
+ "710881000", # Education about eating pattern (procedure)
382
+ "428461000124101", # Referral to nutrition professional (procedure)
383
+ "428691000124107", # Vitamin K dietary intake education (procedure)
384
+ "441041000124100", # Counseling about nutrition (procedure)
385
+ "441201000124108", # Counseling about nutrition using cognitive-behavioral theoretical approach (procedure)
386
+ "441231000124100", # Counseling about nutrition using health belief model (procedure)
387
+ "441241000124105", # Counseling about nutrition using social learning theory approach (procedure)
388
+ "441251000124107", # Counseling about nutrition using transtheoretical model and stages of change approach (procedure)
389
+ "441261000124109", # Counseling about nutrition using motivational interviewing strategy (procedure)
390
+ "441271000124102", # Counseling about nutrition using goal setting strategy (procedure)
391
+ "441281000124104", # Counseling about nutrition using self-monitoring strategy (procedure)
392
+ "441291000124101", # Counseling about nutrition using problem solving strategy (procedure)
393
+ "441301000124100", # Counseling about nutrition using social support strategy (procedure)
394
+ "441311000124102", # Counseling about nutrition using stress management strategy (procedure)
395
+ "441321000124105", # Counseling about nutrition using stimulus control strategy (procedure)
396
+ "441331000124108", # Counseling about nutrition using cognitive restructuring strategy (procedure)
397
+ "441341000124103", # Counseling about nutrition using relapse prevention strategy (procedure)
398
+ "441351000124101", # Counseling about nutrition using rewards and contingency management strategy (procedure)
399
+ "445291000124103", # Nutrition-related skills education (procedure)
400
+ "445301000124102", # Content-related nutrition education (procedure)
401
+ "445331000124105", # Nutrition-related laboratory result interpretation education (procedure)
402
+ "445641000124105", # Technical nutrition education (procedure)
403
+ }
404
+
405
+
406
+ class CounselingForPhysicalActivity(ValueSet):
407
+ """
408
+ **Clinical Focus:** The purpose of this value set is to represent concepts for physical activity counseling.
409
+
410
+ **Data Element Scope:** This value set may use a model element related to Intervention.
411
+
412
+ **Inclusion Criteria:** Includes concepts that represent counseling or referrals for physical activity, including weight management services.
413
+
414
+ **Exclusion Criteria:** No exclusions.
415
+
416
+ ** Used in:** CMS155v10
417
+ """
418
+
419
+ VALUE_SET_NAME = "Counseling for Physical Activity"
420
+ OID = "2.16.840.1.113883.3.464.1003.118.12.1035"
421
+ DEFINITION_VERSION = "20170504"
422
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
423
+
424
+ SNOMEDCT = {
425
+ "103736005", # History and physical examination, sports participation (procedure)
426
+ "183073003", # Patient advised about exercise (situation)
427
+ "281090004", # Recommendation to exercise (procedure)
428
+ "304507003", # Exercise education (procedure)
429
+ "304549008", # Giving encouragement to exercise (procedure)
430
+ "304558001", # Reassuring about exercise (procedure)
431
+ "310882002", # Exercise on prescription (regime/therapy)
432
+ "386291006", # Exercise promotion: strength training (procedure)
433
+ "386292004", # Exercise promotion: stretching (procedure)
434
+ "386463000", # Prescribed activity/exercise education (procedure)
435
+ "390864007", # Referral for exercise therapy (procedure)
436
+ "390893007", # Referral to physical activity program (procedure)
437
+ "398636004", # Physical activity assessment (procedure)
438
+ "398752005", # Referral to weight maintenance regimen service (procedure)
439
+ "408289007", # Refer to weight management program (procedure)
440
+ "410200000", # Weight control education (procedure)
441
+ "410289001", # Exercises education, guidance, and counseling (procedure)
442
+ "410335001", # Exercises case management (procedure)
443
+ "429778002", # Patient given written advice on benefits of physical activity (situation)
444
+ "710849009", # Assessment of exercise behavior (procedure)
445
+ "435551000124105", # Counseling about physical activity (procedure)
446
+ }
447
+
448
+
449
+ class PalliativeOrHospiceCare(ValueSet):
450
+ """
451
+ **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.
452
+
453
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
454
+
455
+ **Inclusion Criteria:** Includes concepts that identify an intervention or procedure for palliative, comfort or hospice care.
456
+
457
+ **Exclusion Criteria:** No exclusions.
458
+
459
+ ** Used in:** CMS347v5, CMS159v10, CMS69v10
460
+ """
461
+
462
+ VALUE_SET_NAME = "Palliative or Hospice Care"
463
+ OID = "2.16.840.1.113883.3.600.1.1579"
464
+ DEFINITION_VERSION = "20210224"
465
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
466
+
467
+ SNOMEDCT = {
468
+ "103735009", # Palliative care (regime/therapy)
469
+ "133918004", # Comfort measures (regime/therapy)
470
+ "182964004", # Terminal care (regime/therapy)
471
+ "305284002", # Admission by palliative care physician (procedure)
472
+ "305381007", # Admission to palliative care department (procedure)
473
+ "305981001", # Referral by palliative care physician (procedure)
474
+ "306237005", # Referral to palliative care service (procedure)
475
+ "306288008", # Referral to palliative care physician (procedure)
476
+ "385736008", # Dying care (regime/therapy)
477
+ "385763009", # Hospice care (regime/therapy)
478
+ }
479
+
480
+
481
+ class DietaryRecommendations(ValueSet):
482
+ """
483
+ **Clinical Focus:** The purpose of this value set is to represent concepts for recommendations and education for diet and nutrition.
484
+
485
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
486
+
487
+ **Inclusion Criteria:** This value set may use a model element related to Intervention or Procedure.
488
+
489
+ **Exclusion Criteria:** No exclusions.
490
+
491
+ ** Used in:** CMS22v10
492
+ """
493
+
494
+ VALUE_SET_NAME = "Dietary Recommendations"
495
+ OID = "2.16.840.1.113883.3.600.1515"
496
+ DEFINITION_VERSION = "20210220"
497
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
498
+
499
+ HCPCSLEVELII = {
500
+ "S9452", # Nutrition classes, non-physician provider, per session
501
+ "S9470", # Nutritional counseling, dietitian visit
502
+ }
503
+ ICD10CM = {
504
+ "Z713", # Dietary counseling and surveillance
505
+ }
506
+ SNOMEDCT = {
507
+ "11816003", # Diet education (procedure)
508
+ "61310001", # Nutrition education (procedure)
509
+ "103699006", # Patient referral to dietitian (procedure)
510
+ "182922004", # Dietary regime (regime/therapy)
511
+ "182954008", # Dietary prophylaxis (regime/therapy)
512
+ "182955009", # Low carbohydrate diet - prophylaxis (regime/therapy)
513
+ "182956005", # Low calorie diet - prophylaxis (regime/therapy)
514
+ "182960008", # Unsaturated fat diet - prophylaxis (regime/therapy)
515
+ "183061003", # Low fat diet education (procedure)
516
+ "183065007", # Low carbohydrate diet education (procedure)
517
+ "183070000", # Vegetarian diet education (procedure)
518
+ "183071001", # Vegan diet education (procedure)
519
+ "281085002", # Sugar-free diet education (procedure)
520
+ "284071006", # Dietary treatment for disorder (regime/therapy)
521
+ "284352003", # Obesity diet education (procedure)
522
+ "285383009", # Recommendation to change fruit and nut intake (procedure)
523
+ "289176001", # Recommendation to change sodium intake (procedure)
524
+ "304491008", # Dietary education for disorder (procedure)
525
+ "306163007", # Referral to dietetics service (procedure)
526
+ "361231003", # Prescribed dietary intake (regime/therapy)
527
+ "370847001", # Dietary needs education (procedure)
528
+ "386464006", # Prescribed diet education (procedure)
529
+ "410114009", # Dietary compliance education (procedure)
530
+ "410171007", # Nutrition care education (procedure)
531
+ "410177006", # Special diet education (procedure)
532
+ "410270001", # Nutritionist education, guidance, and counseling (procedure)
533
+ "413315001", # Nutrition / feeding management (regime/therapy)
534
+ "418995006", # Feeding regime (regime/therapy)
535
+ "424753004", # Dietary management education, guidance, and counseling (procedure)
536
+ "443288003", # Lifestyle education regarding diet (procedure)
537
+ "699849008", # Healthy eating education (procedure)
538
+ "715282001", # Combined healthy eating and physical education program (regime/therapy)
539
+ "770749002", # Referral for combined healthy eating and physical education program (procedure)
540
+ "1151000175103", # Dietary Approaches to Stop Hypertension diet (regime/therapy)
541
+ "435771000124106", # General healthful diet (regime/therapy)
542
+ "437231000124109", # Sodium modified diet (regime/therapy)
543
+ "437421000124105", # Decreased sodium diet (regime/therapy)
544
+ }
545
+
546
+
547
+ class FollowUpWithin4Weeks(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 from one day to one month.
554
+
555
+ **Exclusion Criteria:** No exclusions.
556
+
557
+ ** Used in:** CMS22v10
558
+ """
559
+
560
+ VALUE_SET_NAME = "Follow Up Within 4 Weeks"
561
+ OID = "2.16.840.1.113883.3.526.3.1578"
562
+ DEFINITION_VERSION = "20200307"
563
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
564
+
565
+ SNOMEDCT = {
566
+ "183617005", # Follow-up 1 day (finding)
567
+ "183618000", # Follow-up 2-3 days (finding)
568
+ "183619008", # Follow-up 4-6 days (finding)
569
+ "183620002", # Follow-up 1 week (finding)
570
+ "183621003", # Follow-up 2 weeks (finding)
571
+ "183622005", # Follow-up 3 weeks (finding)
572
+ "183623000", # Follow-up 1 month (finding)
573
+ }
574
+
575
+
576
+ class LifestyleRecommendation(ValueSet):
577
+ """
578
+ **Clinical Focus:** The purpose of this value set is to represent concepts for lifestyle needs and education related to hypertension.
579
+
580
+ **Data Element Scope:** This value set may use a model element related to Procedure or Intervention.
581
+
582
+ **Inclusion Criteria:** Includes concepts that represent a procedure or intervention for lifestyle education focused on hypertension.
583
+
584
+ **Exclusion Criteria:** No exclusions.
585
+
586
+ ** Used in:** CMS22v10
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 2021-05-06"
593
+
594
+ SNOMEDCT = {
595
+ "39155009", # Hypertension education (procedure)
596
+ "313204009", # Lifestyle education (procedure)
597
+ "443402002", # Lifestyle education regarding hypertension (procedure)
598
+ }
599
+
600
+
601
+ class RecommendationToIncreasePhysicalActivity(ValueSet):
602
+ """
603
+ **Clinical Focus:** The purpose of this value set is to represent concepts for recommendations for exercise and nutrition education.
604
+
605
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
606
+
607
+ **Inclusion Criteria:** Includes concepts that represent an intervention or procedure for promoting exercise and nutrition regimens.
608
+
609
+ **Exclusion Criteria:** No exclusions.
610
+
611
+ ** Used in:** CMS22v10
612
+ """
613
+
614
+ VALUE_SET_NAME = "Recommendation to Increase Physical Activity"
615
+ OID = "2.16.840.1.113883.3.600.1518"
616
+ DEFINITION_VERSION = "20190313"
617
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
618
+
619
+ HCPCSLEVELII = {
620
+ "S9451", # Exercise classes, non-physician provider, per session
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
+ ** Used in:** CMS22v10
645
+ """
646
+
647
+ VALUE_SET_NAME = "Referral or Counseling for Alcohol Consumption"
648
+ OID = "2.16.840.1.113883.3.526.3.1583"
649
+ DEFINITION_VERSION = "20200307"
650
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
651
+
652
+ SNOMEDCT = {
653
+ "24165007", # Alcoholism counseling (procedure)
654
+ "38670004", # Referral to alcoholism rehabilitation service (procedure)
655
+ "390857005", # Referral to community alcohol team (procedure)
656
+ "408947007", # Alcohol abuse prevention education (procedure)
657
+ "413473000", # Counseling about alcohol consumption (procedure)
658
+ "417096006", # Referral to community drug and alcohol team (procedure)
659
+ "431260004", # Referral to specialist alcohol treatment service (procedure)
660
+ }
661
+
662
+
663
+ class ReferralToPrimaryCareOrAlternateProvider(ValueSet):
664
+ """
665
+ **Clinical Focus:** The purpose of this value set is to represent concepts for referrals to an alternate or primary care provider.
666
+
667
+ **Data Element Scope:** This value set may use a model element related to Intervention.
668
+
669
+ **Inclusion Criteria:** Includes concepts that describe an intervention of a referral to an alternate or primary care provider.
670
+
671
+ **Exclusion Criteria:** No exclusions.
672
+
673
+ ** Used in:** CMS22v10
674
+ """
675
+
676
+ VALUE_SET_NAME = "Referral to Primary Care or Alternate Provider"
677
+ OID = "2.16.840.1.113883.3.526.3.1580"
678
+ DEFINITION_VERSION = "20210220"
679
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
680
+
681
+ SNOMEDCT = {
682
+ "134403003", # Urgent referral (procedure)
683
+ "183516009", # Referral to general medical service (procedure)
684
+ "183561008", # Referral to general practitioner (procedure)
685
+ "183856001", # Referral to hypertension clinic (procedure)
686
+ "306206005", # Referral to service (procedure)
687
+ "306253008", # Referral to doctor (procedure)
688
+ "306362008", # Referral to pharmacist (procedure)
689
+ "308470006", # Referral to general physician (procedure)
690
+ "453641000124107", # Referral to specialist pharmacist (procedure)
691
+ }
692
+
693
+
694
+ class WeightReductionRecommended(ValueSet):
695
+ """
696
+ **Clinical Focus:** The purpose of this value set is to represent concepts for discussion, education and management of weight reduction.
697
+
698
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
699
+
700
+ **Inclusion Criteria:** Includes concepts that represent discussion, education and management of weight reduction.
701
+
702
+ **Exclusion Criteria:** No exclusions.
703
+
704
+ ** Used in:** CMS22v10
705
+ """
706
+
707
+ VALUE_SET_NAME = "Weight Reduction Recommended"
708
+ OID = "2.16.840.1.113883.3.600.1510"
709
+ DEFINITION_VERSION = "20210220"
710
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
711
+
712
+ HCPCSLEVELII = {
713
+ "S9449", # Weight management classes, non-physician provider, per session
714
+ }
715
+ SNOMEDCT = {
716
+ "170795002", # Follow-up obesity assessment (regime/therapy)
717
+ "266724001", # Weight-reducing diet education (procedure)
718
+ "268523001", # Target weight discussed (regime/therapy)
719
+ "284352003", # Obesity diet education (procedure)
720
+ "388975008", # Weight reduction consultation (procedure)
721
+ "398752005", # Referral to weight maintenance regimen service (procedure)
722
+ "408289007", # Refer to weight management program (procedure)
723
+ "410200000", # Weight control education (procedure)
724
+ "410201001", # Weight maintenance regimen management (procedure)
725
+ "445033007", # Discussion about ideal body weight (procedure)
726
+ "1181000175107", # Recommendation to lose weight (procedure)
727
+ }
728
+
729
+
730
+ class FollowUpForAdolescentDepression(ValueSet):
731
+ """
732
+ **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.
733
+
734
+ **Data Element Scope:** This value set may use a model element related to Intervention.
735
+
736
+ **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.
737
+
738
+ **Exclusion Criteria:** No exclusions.
739
+
740
+ ** Used in:** CMS2v11
741
+ """
742
+
743
+ VALUE_SET_NAME = "Follow Up for Adolescent Depression"
744
+ OID = "2.16.840.1.113883.3.526.3.1569"
745
+ DEFINITION_VERSION = "20210220"
746
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
747
+
748
+ SNOMEDCT = {
749
+ "1555005", # Brief group psychotherapy (regime/therapy)
750
+ "5694008", # Crisis intervention with follow-up (regime/therapy)
751
+ "15558000", # Expressive psychotherapy (regime/therapy)
752
+ "18512000", # Individual psychotherapy (regime/therapy)
753
+ "28868002", # Interactive group medical psychotherapy (regime/therapy)
754
+ "75516001", # Psychotherapy (regime/therapy)
755
+ "76168009", # Group psychotherapy (regime/therapy)
756
+ "76740001", # Psychiatric telephone consultation or therapy with patient (procedure)
757
+ "81294000", # Patient referral for psychotherapy (procedure)
758
+ "88848003", # Psychiatric follow-up (procedure)
759
+ "91310009", # Patient follow-up to return when and if necessary (procedure)
760
+ "108313002", # Family psychotherapy procedure (regime/therapy)
761
+ "228557008", # Cognitive and behavioral therapy (regime/therapy)
762
+ "229065009", # Exercise therapy (regime/therapy)
763
+ "372067001", # Implementation of measures to provide psychological support (regime/therapy)
764
+ "385721005", # Coping support assessment (procedure)
765
+ "385724002", # Coping support management (procedure)
766
+ "385725001", # Emotional support assessment (procedure)
767
+ "385726000", # Emotional support education (procedure)
768
+ "385727009", # Emotional support management (procedure)
769
+ "385887004", # Mental health history taking assessment (procedure)
770
+ "385889001", # Mental health history taking education (procedure)
771
+ "385890005", # Mental health history taking management (procedure)
772
+ "386472008", # Telephone consultation (procedure)
773
+ "401277000", # Completion of mental health crisis plan (procedure)
774
+ "405780009", # Dialectical behavior therapy (regime/therapy)
775
+ "410223002", # Mental health care assessment (procedure)
776
+ "410224008", # Mental health care education (procedure)
777
+ "410225009", # Mental health care management (procedure)
778
+ "410226005", # Mental health promotion assessment (procedure)
779
+ "410227001", # Mental health promotion education (procedure)
780
+ "410228006", # Mental health promotion management (procedure)
781
+ "410229003", # Mental health screening assessment (procedure)
782
+ "410230008", # Mental health screening education (procedure)
783
+ "410231007", # Mental health screening management (procedure)
784
+ "410232000", # Mental health treatment assessment (procedure)
785
+ "410233005", # Mental health treatment education (procedure)
786
+ "410234004", # Management of mental health treatment (procedure)
787
+ "425604002", # Case management follow up (procedure)
788
+ "439141002", # Discharge by mental health primary care worker (procedure)
789
+ }
790
+
791
+
792
+ class FollowUpForAdultDepression(ValueSet):
793
+ """
794
+ **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.
795
+
796
+ **Data Element Scope:** This value set may use a model element related to Intervention.
797
+
798
+ **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.
799
+
800
+ **Exclusion Criteria:** No exclusions.
801
+
802
+ ** Used in:** CMS2v11
803
+ """
804
+
805
+ VALUE_SET_NAME = "Follow Up for Adult Depression"
806
+ OID = "2.16.840.1.113883.3.526.3.1568"
807
+ DEFINITION_VERSION = "20210220"
808
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
809
+
810
+ SNOMEDCT = {
811
+ "1555005", # Brief group psychotherapy (regime/therapy)
812
+ "5694008", # Crisis intervention with follow-up (regime/therapy)
813
+ "15558000", # Expressive psychotherapy (regime/therapy)
814
+ "18512000", # Individual psychotherapy (regime/therapy)
815
+ "28868002", # Interactive group medical psychotherapy (regime/therapy)
816
+ "75516001", # Psychotherapy (regime/therapy)
817
+ "76168009", # Group psychotherapy (regime/therapy)
818
+ "76740001", # Psychiatric telephone consultation or therapy with patient (procedure)
819
+ "81294000", # Patient referral for psychotherapy (procedure)
820
+ "88848003", # Psychiatric follow-up (procedure)
821
+ "91310009", # Patient follow-up to return when and if necessary (procedure)
822
+ "108313002", # Family psychotherapy procedure (regime/therapy)
823
+ "228557008", # Cognitive and behavioral therapy (regime/therapy)
824
+ "229065009", # Exercise therapy (regime/therapy)
825
+ "372067001", # Implementation of measures to provide psychological support (regime/therapy)
826
+ "385721005", # Coping support assessment (procedure)
827
+ "385724002", # Coping support management (procedure)
828
+ "385725001", # Emotional support assessment (procedure)
829
+ "385726000", # Emotional support education (procedure)
830
+ "385727009", # Emotional support management (procedure)
831
+ "385887004", # Mental health history taking assessment (procedure)
832
+ "385889001", # Mental health history taking education (procedure)
833
+ "385890005", # Mental health history taking management (procedure)
834
+ "386472008", # Telephone consultation (procedure)
835
+ "401277000", # Completion of mental health crisis plan (procedure)
836
+ "405780009", # Dialectical behavior therapy (regime/therapy)
837
+ "410223002", # Mental health care assessment (procedure)
838
+ "410224008", # Mental health care education (procedure)
839
+ "410225009", # Mental health care management (procedure)
840
+ "410226005", # Mental health promotion assessment (procedure)
841
+ "410227001", # Mental health promotion education (procedure)
842
+ "410228006", # Mental health promotion management (procedure)
843
+ "410229003", # Mental health screening assessment (procedure)
844
+ "410230008", # Mental health screening education (procedure)
845
+ "410231007", # Mental health screening management (procedure)
846
+ "410232000", # Mental health treatment assessment (procedure)
847
+ "410233005", # Mental health treatment education (procedure)
848
+ "410234004", # Management of mental health treatment (procedure)
849
+ "425604002", # Case management follow up (procedure)
850
+ "439141002", # Discharge by mental health primary care worker (procedure)
851
+ }
852
+
853
+
854
+ class ReferralForAdolescentDepression(ValueSet):
855
+ """
856
+ **Clinical Focus:** The purpose of this value set is to represent concepts for referrals for depression management for the child and adolescent population.
857
+
858
+ **Data Element Scope:** This value set may use a model element related to Intervention.
859
+
860
+ **Inclusion Criteria:** Includes concepts that represent referrals for depression management in the child and adolescent population.
861
+
862
+ **Exclusion Criteria:** No exclusions.
863
+
864
+ ** Used in:** CMS2v11
865
+ """
866
+
867
+ VALUE_SET_NAME = "Referral for Adolescent Depression"
868
+ OID = "2.16.840.1.113883.3.526.3.1570"
869
+ DEFINITION_VERSION = "20200307"
870
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
871
+
872
+ SNOMEDCT = {
873
+ "183524004", # Referral to psychiatry service (procedure)
874
+ "183583007", # Refer to mental health worker (procedure)
875
+ "183851006", # Referral to clinic (procedure)
876
+ "183866009", # Referral to emergency clinic (procedure)
877
+ "306136006", # Referral to liaison psychiatry service (procedure)
878
+ "306137002", # Referral to mental handicap psychiatry service (procedure)
879
+ "306226009", # Referral to mental health counseling service (procedure)
880
+ "306227000", # Referral for mental health counseling (procedure)
881
+ "306252003", # Referral to mental health counselor (procedure)
882
+ "306291008", # Referral to child and adolescent psychiatrist (procedure)
883
+ "306294000", # Referral to psychiatrist for mental handicap (procedure)
884
+ "308459004", # Referral to psychologist (procedure)
885
+ "308477009", # Referral to psychiatrist (procedure)
886
+ "309627007", # Child referral - clinical psychologist (procedure)
887
+ "390866009", # Referral to mental health team (procedure)
888
+ "703978000", # Referral to primary care service (procedure)
889
+ "710914003", # Referral to family therapy (procedure)
890
+ "711281004", # Referral to support group (procedure)
891
+ }
892
+
893
+
894
+ class ReferralForAdultDepression(ValueSet):
895
+ """
896
+ **Clinical Focus:** The purpose of this value set is to represent concepts for referrals for depression management for the adult population.
897
+
898
+ **Data Element Scope:** This value set may use a model element related to Intervention.
899
+
900
+ **Inclusion Criteria:** Includes concepts that represent referrals for depression management in the adult population.
901
+
902
+ **Exclusion Criteria:** No exclusions.
903
+
904
+ ** Used in:** CMS2v11
905
+ """
906
+
907
+ VALUE_SET_NAME = "Referral for Adult Depression"
908
+ OID = "2.16.840.1.113883.3.526.3.1571"
909
+ DEFINITION_VERSION = "20200307"
910
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
911
+
912
+ SNOMEDCT = {
913
+ "183524004", # Referral to psychiatry service (procedure)
914
+ "183528001", # Referral to psychiatrist for the elderly mentally ill (procedure)
915
+ "183583007", # Refer to mental health worker (procedure)
916
+ "183866009", # Referral to emergency clinic (procedure)
917
+ "305922005", # Referral by mental health counselor (procedure)
918
+ "306136006", # Referral to liaison psychiatry service (procedure)
919
+ "306137002", # Referral to mental handicap psychiatry service (procedure)
920
+ "306138007", # Referral to psychogeriatric service (procedure)
921
+ "306204008", # Referral to psychogeriatric day hospital (procedure)
922
+ "306226009", # Referral to mental health counseling service (procedure)
923
+ "306227000", # Referral for mental health counseling (procedure)
924
+ "306252003", # Referral to mental health counselor (procedure)
925
+ "306294000", # Referral to psychiatrist for mental handicap (procedure)
926
+ "308459004", # Referral to psychologist (procedure)
927
+ "308477009", # Referral to psychiatrist (procedure)
928
+ "390866009", # Referral to mental health team (procedure)
929
+ "703978000", # Referral to primary care service (procedure)
930
+ "710914003", # Referral to family therapy (procedure)
931
+ "711281004", # Referral to support group (procedure)
932
+ }
933
+
934
+
935
+ class HospiceCareAmbulatory(ValueSet):
936
+ """
937
+ **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.
938
+
939
+ **Data Element Scope:** This value set may use a model element related to Procedure or Intervention.
940
+
941
+ **Inclusion Criteria:** Includes concepts that represent a procedure or intervention for hospice care.
942
+
943
+ **Exclusion Criteria:** Excludes concepts that represent palliative care or comfort measures.
944
+
945
+ ** Used in:** CMS347v5, CMS69v10
946
+ """
947
+
948
+ VALUE_SET_NAME = "Hospice Care Ambulatory"
949
+ OID = "2.16.840.1.113883.3.526.3.1584"
950
+ DEFINITION_VERSION = "20200307"
951
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
952
+
953
+ SNOMEDCT = {
954
+ "385763009", # Hospice care (regime/therapy)
955
+ "385765002", # Hospice care management (procedure)
956
+ }
957
+
958
+
959
+ class Referral(ValueSet):
960
+ """
961
+ **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.
962
+
963
+ **Data Element Scope:** This value set may use a model element related to Intervention.
964
+
965
+ **Inclusion Criteria:** Includes concepts that represent an intervention for referrals and consultations.
966
+
967
+ **Exclusion Criteria:** Excludes concepts that represent self-referrals.
968
+
969
+ ** Used in:** CMS50v10
970
+ """
971
+
972
+ VALUE_SET_NAME = "Referral"
973
+ OID = "2.16.840.1.113883.3.464.1003.101.12.1046"
974
+ DEFINITION_VERSION = "20170504"
975
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
976
+
977
+ SNOMEDCT = {
978
+ "54395008", # Patient referral for medical consultation (procedure)
979
+ "103696004", # Patient referral to specialist (procedure)
980
+ "103697008", # Patient referral for dental care (procedure)
981
+ "103698003", # Patient referral to non-physician provider (procedure)
982
+ "103699006", # Patient referral to dietitian (procedure)
983
+ "103704003", # Patient referral to sex therapist (procedure)
984
+ "183515008", # Referral to physician (procedure)
985
+ "183517000", # Referral to pediatrician (procedure)
986
+ "183528001", # Referral to psychiatrist for the elderly mentally ill (procedure)
987
+ "183529009", # Referral to oncologist (procedure)
988
+ "183530004", # Referral to diabetologist (procedure)
989
+ "183541002", # Referral to surgeon (procedure)
990
+ "183555005", # Burns referral (procedure)
991
+ "183557002", # Referral to cardiothoracic surgeon (procedure)
992
+ "183561008", # Referral to general practitioner (procedure)
993
+ "183567007", # Referral to hematologist (procedure)
994
+ "183569005", # Refer to terminal care consult (procedure)
995
+ "183583007", # Refer to mental health worker (procedure)
996
+ "183591003", # Refer to partner (procedure)
997
+ "183878008", # Private referral to general surgeon (procedure)
998
+ "183879000", # Private referral to ophthalmologist (procedure)
999
+ "183880002", # Private referral to ear, nose and throat surgeon (procedure)
1000
+ "183881003", # Private referral to orthopedic surgeon (procedure)
1001
+ "183882005", # Private referral to neurosurgeon (procedure)
1002
+ "183884006", # Private referral to pediatric surgeon (procedure)
1003
+ "183885007", # Private referral to obstetrician (procedure)
1004
+ "183886008", # Private referral to gynecologist (procedure)
1005
+ "183887004", # Private referral to plastic surgeon (procedure)
1006
+ "183888009", # Private referral to oral surgeon (procedure)
1007
+ "183889001", # Private referral to urologist (procedure)
1008
+ "183890005", # Private referral to thoracic surgeon (procedure)
1009
+ "183891009", # Private referral to vascular surgeon (procedure)
1010
+ "183892002", # Private referral to maxillofacial surgeon (procedure)
1011
+ "183893007", # Private referral cardiothoracic surgeon (procedure)
1012
+ "183894001", # Private referral to physician (procedure)
1013
+ "183895000", # Private referral to general physician (procedure)
1014
+ "183896004", # Private referral to pediatrician (procedure)
1015
+ "183897008", # Private referral to dermatologist (procedure)
1016
+ "183899006", # Private referral to cardiologist (procedure)
1017
+ "183900001", # Private referral to immunologist (procedure)
1018
+ "183901002", # Private referral to neurologist (procedure)
1019
+ "183902009", # Private referral to geriatrician (procedure)
1020
+ "183903004", # Private referral to gastroenterologist (procedure)
1021
+ "183904005", # Private referral to psychiatrist (procedure)
1022
+ "183905006", # Private referral to venereologist (procedure)
1023
+ "183906007", # Private referral to rheumatologist (procedure)
1024
+ "183907003", # Private referral to chest physician (procedure)
1025
+ "183908008", # Private referral to psychogeriatrician (procedure)
1026
+ "183909000", # Private referral to oncologist (procedure)
1027
+ "183910005", # Private referral to diabetologist (procedure)
1028
+ "183911009", # Private referral to radiotherapist (procedure)
1029
+ "183913007", # Private referral to geneticist (procedure)
1030
+ "183914001", # Private referral to anesthetist (procedure)
1031
+ "183915000", # Private referral to endocrinologist (procedure)
1032
+ "183916004", # Private referral to nephrologist (procedure)
1033
+ "266747000", # Referral to private doctor (procedure)
1034
+ "274410002", # Dental referral - child (procedure)
1035
+ "306241009", # Referral to audiological physician (procedure)
1036
+ "306242002", # Referral to audiological scientist (procedure)
1037
+ "306243007", # Referral to community doctor in audiology (procedure)
1038
+ "306245000", # Referral to hearing therapist (procedure)
1039
+ "306247008", # Referral to pediatric audiologist (procedure)
1040
+ "306250006", # Referral to genetic counselor (procedure)
1041
+ "306252003", # Referral to mental health counselor (procedure)
1042
+ "306253008", # Referral to doctor (procedure)
1043
+ "306254002", # Referral to Accident and Emergency doctor (procedure)
1044
+ "306255001", # Referral to anesthetist (procedure)
1045
+ "306256000", # Referral to radiotherapist (procedure)
1046
+ "306257009", # Referral to family planning doctor (procedure)
1047
+ "306258004", # Referral to intensive care specialist (procedure)
1048
+ "306259007", # Referral to adult intensive care specialist (procedure)
1049
+ "306260002", # Referral to pediatric intensive care specialist (procedure)
1050
+ "306261003", # Referral to community pediatrician (procedure)
1051
+ "306262005", # Referral to neonatologist (procedure)
1052
+ "306263000", # Referral to pediatric neurologist (procedure)
1053
+ "306264006", # Referral to pediatric oncologist (procedure)
1054
+ "306265007", # Referral to pain management specialist (procedure)
1055
+ "306266008", # Referral to pathologist (procedure)
1056
+ "306267004", # Referral to blood transfusion doctor (procedure)
1057
+ "306268009", # Referral to chemical pathologist (procedure)
1058
+ "306269001", # Referral to general pathologist (procedure)
1059
+ "306270000", # Referral to medical microbiologist (procedure)
1060
+ "306271001", # Referral to neuropathologist (procedure)
1061
+ "306272008", # Referral to clinical allergist (procedure)
1062
+ "306273003", # Referral to chest physician (procedure)
1063
+ "306275005", # Referral to respiratory physician (procedure)
1064
+ "306276006", # Referral to clinical neurophysiologist (procedure)
1065
+ "306277002", # Referral to clinical physiologist (procedure)
1066
+ "306278007", # Referral to endocrinologist (procedure)
1067
+ "306279004", # Referral to clinical geneticist (procedure)
1068
+ "306280001", # Referral to clinical cytogeneticist (procedure)
1069
+ "306281002", # Referral to clinical molecular geneticist (procedure)
1070
+ "306282009", # Referral to genitourinary physician (procedure)
1071
+ "306284005", # Referral to infectious diseases physician (procedure)
1072
+ "306285006", # Referral to medical ophthalmologist (procedure)
1073
+ "306286007", # Referral to nephrologist (procedure)
1074
+ "306287003", # Referral to nuclear medicine physician (procedure)
1075
+ "306288008", # Referral to palliative care physician (procedure)
1076
+ "306289000", # Referral to rehabilitation physician (procedure)
1077
+ "306290009", # Referral to rheumatologist (procedure)
1078
+ "306291008", # Referral to child and adolescent psychiatrist (procedure)
1079
+ "306293006", # Referral to liaison psychiatrist (procedure)
1080
+ "306294000", # Referral to psychiatrist for mental handicap (procedure)
1081
+ "306295004", # Referral to rehabilitation psychiatrist (procedure)
1082
+ "306296003", # Referral to public health physician (procedure)
1083
+ "306297007", # Referral to obstetrician and gynecologist (procedure)
1084
+ "306298002", # Referral to occupational health physician (procedure)
1085
+ "306299005", # Referral to radiologist (procedure)
1086
+ "306300002", # Referral to breast surgeon (procedure)
1087
+ "306301003", # Referral to thoracic surgeon (procedure)
1088
+ "306302005", # Referral to cardiac surgeon (procedure)
1089
+ "306303000", # Referral to dental surgeon (procedure)
1090
+ "306304006", # Referral to orthodontist (procedure)
1091
+ "306305007", # Referral to pediatric dentist (procedure)
1092
+ "306306008", # Referral to restorative dentist (procedure)
1093
+ "306307004", # Referral to endocrine surgeon (procedure)
1094
+ "306308009", # Referral to gastrointestinal surgeon (procedure)
1095
+ "306309001", # Referral to general gastrointestinal surgeon (procedure)
1096
+ "306310006", # Referral to upper gastrointestinal surgeon (procedure)
1097
+ "306311005", # Referral to colorectal surgeon (procedure)
1098
+ "306312003", # Referral to hand surgeon (procedure)
1099
+ "306313008", # Referral to hepatobiliary surgeon (procedure)
1100
+ "306314002", # Referral to pancreatic surgeon (procedure)
1101
+ "306315001", # Referral to plastic surgeon (procedure)
1102
+ "306316000", # Referral to transplant surgeon (procedure)
1103
+ "306317009", # Referral to trauma surgeon (procedure)
1104
+ "306318004", # Referral to urologist (procedure)
1105
+ "306320001", # Referral to clinical nurse specialist (procedure)
1106
+ "306338003", # Referral to nurse practitioner (procedure)
1107
+ "306341007", # Referral to community-based midwife (procedure)
1108
+ "306342000", # Referral to hospital-based midwife (procedure)
1109
+ "306343005", # Referral to psychotherapist (procedure)
1110
+ "306351008", # Referral to community-based podiatrist (procedure)
1111
+ "306352001", # Referral to hospital-based podiatrist (procedure)
1112
+ "306353006", # Referral to community-based dietitian (procedure)
1113
+ "306354000", # Referral to hospital-based dietitian (procedure)
1114
+ "306355004", # Referral to community-based occupational therapist (procedure)
1115
+ "306356003", # Referral to social services department occupational therapist (procedure)
1116
+ "306357007", # Referral to hospital-based occupational therapist (procedure)
1117
+ "306358002", # Referral to community-based physiotherapist (procedure)
1118
+ "306359005", # Referral to hospital-based physiotherapist (procedure)
1119
+ "306360000", # Referral to community-based speech and language therapist (procedure)
1120
+ "306361001", # Referral to hospital-based speech and language therapist (procedure)
1121
+ "306736002", # Referral to general dental surgeon (procedure)
1122
+ "307063001", # Referral to clinical hematologist (procedure)
1123
+ "307777008", # Referral to vascular surgeon (procedure)
1124
+ "308439003", # Referral to midwife (procedure)
1125
+ "308447003", # Referral to physiotherapist (procedure)
1126
+ "308449000", # Referral to chiropractor (procedure)
1127
+ "308450000", # Referral to osteopath (procedure)
1128
+ "308451001", # Referral to podiatrist (procedure)
1129
+ "308452008", # Referral to speech and language therapist (procedure)
1130
+ "308453003", # Referral to occupational therapist (procedure)
1131
+ "308454009", # Referral to orthoptist (procedure)
1132
+ "308455005", # Referral to orthotist (procedure)
1133
+ "308456006", # Referral to audiologist (procedure)
1134
+ "308459004", # Referral to psychologist (procedure)
1135
+ "308465004", # Referral to optometrist (procedure)
1136
+ "308469005", # Referral to geneticist (procedure)
1137
+ "308470006", # Referral to general physician (procedure)
1138
+ "308471005", # Referral to cardiologist (procedure)
1139
+ "308472003", # Referral to dermatologist (procedure)
1140
+ "308473008", # Referral to clinical immunologist (procedure)
1141
+ "308474002", # Referral to neurologist (procedure)
1142
+ "308475001", # Referral to care of the elderly physician (procedure)
1143
+ "308476000", # Referral to gastroenterologist (procedure)
1144
+ "308477009", # Referral to psychiatrist (procedure)
1145
+ "308478004", # Referral to general surgeon (procedure)
1146
+ "308479007", # Referral to ophthalmologist (procedure)
1147
+ "308480005", # Referral to ear, nose and throat surgeon (procedure)
1148
+ "308481009", # Referral to orthopedic surgeon (procedure)
1149
+ "308482002", # Referral to neurosurgeon (procedure)
1150
+ "308483007", # Referral to pediatric surgeon (procedure)
1151
+ "308484001", # Referral to obstetrician (procedure)
1152
+ "308485000", # Referral to gynecologist (procedure)
1153
+ "309046007", # Private referral to surgeon (procedure)
1154
+ "309623006", # Child referral to optician (procedure)
1155
+ "309626003", # Child referral - school psychologist (procedure)
1156
+ "309627007", # Child referral - clinical psychologist (procedure)
1157
+ "309629005", # Child referral - community dentist (procedure)
1158
+ "310515004", # Referral to medical oncologist (procedure)
1159
+ "312487009", # Referral to pediatric cardiologist (procedure)
1160
+ "312488004", # Referral to community child health doctor (procedure)
1161
+ "390866009", # Referral to mental health team (procedure)
1162
+ "401266006", # Referral to drug abuse counselor (procedure)
1163
+ "406158007", # Referral to oral surgeon (procedure)
1164
+ "406159004", # Referral to maxillofacial surgeon (procedure)
1165
+ "408285001", # Referral to pediatric dietitian (procedure)
1166
+ "415277000", # Referral to pediatric endocrinologist (procedure)
1167
+ "416116000", # Referral to home registered dietitian (procedure)
1168
+ "416999007", # Private referral to physiotherapist (procedure)
1169
+ "425971006", # Referral to pediatric pulmonologist (procedure)
1170
+ "429365000", # Referral to pediatric gastroenterologist (procedure)
1171
+ "433151006", # Referral to educational psychologist (procedure)
1172
+ "698563003", # Referral to bariatric surgeon (procedure)
1173
+ "698599008", # Private referral to breast surgeon (procedure)
1174
+ "703974003", # Private referral to colorectal surgeon (procedure)
1175
+ "703975002", # Private referral to podiatrist (procedure)
1176
+ "703976001", # Private referral to radiologist (procedure)
1177
+ "716634006", # Referral to neurological physiotherapist (procedure)
1178
+ "428441000124100", # Referral to nurse anesthetist (procedure)
1179
+ "428451000124103", # Referral to physician assistant (procedure)
1180
+ "428461000124101", # Referral to nutrition professional (procedure)
1181
+ "428471000124108", # Referral to clinical psychologist (procedure)
1182
+ "428481000124106", # Referral to clinical social worker (procedure)
1183
+ "428491000124109", # Referral to anesthesiologist assistant (procedure)
1184
+ "428541000124104", # Referral to nurse midwife (procedure)
1185
+ "448761000124106", # Referral to endovascular specialist (procedure)
1186
+ "448771000124104", # Referral to prosthetist (procedure)
1187
+ }
1188
+
1189
+
1190
+ class FollowUpForAboveNormalBmi(ValueSet):
1191
+ """
1192
+ **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.
1193
+
1194
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
1195
+
1196
+ **Inclusion Criteria:** Includes concepts that represent a follow-up for above normal body mass index (BMI).
1197
+
1198
+ **Exclusion Criteria:** No exclusions.
1199
+
1200
+ ** Used in:** CMS69v10
1201
+ """
1202
+
1203
+ VALUE_SET_NAME = "Follow Up for Above Normal BMI"
1204
+ OID = "2.16.840.1.113883.3.600.1.1525"
1205
+ DEFINITION_VERSION = "20190314"
1206
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
1207
+
1208
+ CPT = {
1209
+ "43644", # Laparoscopy, surgical, gastric restrictive procedure; with gastric bypass and Roux-en-Y gastroenterostomy (roux limb 150 cm or less)
1210
+ "43645", # Laparoscopy, surgical, gastric restrictive procedure; with gastric bypass and small intestine reconstruction to limit absorption
1211
+ "43659", # Unlisted laparoscopy procedure, stomach
1212
+ "43770", # Laparoscopy, surgical, gastric restrictive procedure; placement of adjustable gastric restrictive device (eg, gastric band and subcutaneous port components)
1213
+ "43771", # Laparoscopy, surgical, gastric restrictive procedure; revision of adjustable gastric restrictive device component only
1214
+ "43772", # Laparoscopy, surgical, gastric restrictive procedure; removal of adjustable gastric restrictive device component only
1215
+ "43773", # Laparoscopy, surgical, gastric restrictive procedure; removal and replacement of adjustable gastric restrictive device component only
1216
+ "43774", # Laparoscopy, surgical, gastric restrictive procedure; removal of adjustable gastric restrictive device and subcutaneous port components
1217
+ "43842", # Gastric restrictive procedure, without gastric bypass, for morbid obesity; vertical-banded gastroplasty
1218
+ "43843", # Gastric restrictive procedure, without gastric bypass, for morbid obesity; other than vertical-banded gastroplasty
1219
+ "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)
1220
+ "43846", # Gastric restrictive procedure, with gastric bypass for morbid obesity; with short limb (150 cm or less) Roux-en-Y gastroenterostomy
1221
+ "43847", # Gastric restrictive procedure, with gastric bypass for morbid obesity; with small intestine reconstruction to limit absorption
1222
+ "43848", # Revision, open, of gastric restrictive procedure for morbid obesity, other than adjustable gastric restrictive device (separate procedure)
1223
+ "43886", # Gastric restrictive procedure, open; revision of subcutaneous port component only
1224
+ "43888", # Gastric restrictive procedure, open; removal and replacement of subcutaneous port component only
1225
+ "97802", # Medical nutrition therapy; initial assessment and intervention, individual, face-to-face with the patient, each 15 minutes
1226
+ "97803", # Medical nutrition therapy; re-assessment and intervention, individual, face-to-face with the patient, each 15 minutes
1227
+ "97804", # Medical nutrition therapy; group (2 or more individual(s)), each 30 minutes
1228
+ "98960", # Education and training for patient self-management by a qualified, nonphysician health care professional using a standardized curriculum, face-to-face with the patient (could include caregiver/family) each 30 minutes; individual patient
1229
+ "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)
1230
+ "99401", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 15 minutes
1231
+ "99402", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 30 minutes
1232
+ }
1233
+ HCPCSLEVELII = {
1234
+ "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
1235
+ "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
1236
+ "G0447", # Face-to-face behavioral counseling for obesity, 15 minutes
1237
+ "G0473", # Face-to-face behavioral counseling for obesity, group (2-10), 30 minutes
1238
+ "S9449", # Weight management classes, non-physician provider, per session
1239
+ "S9451", # Exercise classes, non-physician provider, per session
1240
+ "S9452", # Nutrition classes, non-physician provider, per session
1241
+ "S9470", # Nutritional counseling, dietitian visit
1242
+ }
1243
+ ICD10CM = {
1244
+ "Z713", # Dietary counseling and surveillance
1245
+ "Z7182", # Exercise counseling
1246
+ }
1247
+ SNOMEDCT = {
1248
+ "304549008", # Giving encouragement to exercise (procedure)
1249
+ "307818003", # Weight monitoring (regime/therapy)
1250
+ "361231003", # Prescribed dietary intake (regime/therapy)
1251
+ "370847001", # Dietary needs education (procedure)
1252
+ "386291006", # Exercise promotion: strength training (procedure)
1253
+ "386292004", # Exercise promotion: stretching (procedure)
1254
+ "386373004", # Nutrition therapy (regime/therapy)
1255
+ "386463000", # Prescribed activity/exercise education (procedure)
1256
+ "386464006", # Prescribed diet education (procedure)
1257
+ "410177006", # Special diet education (procedure)
1258
+ "413315001", # Nutrition / feeding management (regime/therapy)
1259
+ "418995006", # Feeding regime (regime/therapy)
1260
+ "424753004", # Dietary management education, guidance, and counseling (procedure)
1261
+ "443288003", # Lifestyle education regarding diet (procedure)
1262
+ }
1263
+
1264
+
1265
+ class FollowUpForBelowNormalBmi(ValueSet):
1266
+ """
1267
+ **Clinical Focus:** The purpose of this value set is to represent concepts for follow-up with a body mass index (BMI) below normal measurement.
1268
+
1269
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
1270
+
1271
+ **Inclusion Criteria:** Includes concepts that represent a follow-up for below normal body mass index (BMI).
1272
+
1273
+ **Exclusion Criteria:** No exclusions.
1274
+
1275
+ ** Used in:** CMS69v10
1276
+ """
1277
+
1278
+ VALUE_SET_NAME = "Follow Up for Below Normal BMI"
1279
+ OID = "2.16.840.1.113883.3.600.1.1528"
1280
+ DEFINITION_VERSION = "20200307"
1281
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
1282
+
1283
+ CPT = {
1284
+ "97802", # Medical nutrition therapy; initial assessment and intervention, individual, face-to-face with the patient, each 15 minutes
1285
+ "97803", # Medical nutrition therapy; re-assessment and intervention, individual, face-to-face with the patient, each 15 minutes
1286
+ "97804", # Medical nutrition therapy; group (2 or more individual(s)), each 30 minutes
1287
+ "98960", # Education and training for patient self-management by a qualified, nonphysician health care professional using a standardized curriculum, face-to-face with the patient (could include caregiver/family) each 30 minutes; individual patient
1288
+ "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)
1289
+ "99401", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 15 minutes
1290
+ "99402", # Preventive medicine counseling and/or risk factor reduction intervention(s) provided to an individual (separate procedure); approximately 30 minutes
1291
+ }
1292
+ HCPCSLEVELII = {
1293
+ "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
1294
+ "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
1295
+ "S9449", # Weight management classes, non-physician provider, per session
1296
+ "S9452", # Nutrition classes, non-physician provider, per session
1297
+ "S9470", # Nutritional counseling, dietitian visit
1298
+ }
1299
+ ICD10CM = {
1300
+ "Z713", # Dietary counseling and surveillance
1301
+ }
1302
+ SNOMEDCT = {
1303
+ "386464006", # Prescribed diet education (procedure)
1304
+ "410177006", # Special diet education (procedure)
1305
+ "413315001", # Nutrition / feeding management (regime/therapy)
1306
+ "418995006", # Feeding regime (regime/therapy)
1307
+ "424753004", # Dietary management education, guidance, and counseling (procedure)
1308
+ "429095004", # Dietary education for weight gain (procedure)
1309
+ "443288003", # Lifestyle education regarding diet (procedure)
1310
+ }
1311
+
1312
+
1313
+ class ReferralsWhereWeightAssessmentMayOccur(ValueSet):
1314
+ """
1315
+ **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.
1316
+
1317
+ **Data Element Scope:** This value set may use a model element related to Intervention or Procedure.
1318
+
1319
+ **Inclusion Criteria:** Includes concepts that represent a referral to multiple types of providers and settings for weight assessment.
1320
+
1321
+ **Exclusion Criteria:** No exclusions.
1322
+
1323
+ ** Used in:** CMS69v10
1324
+ """
1325
+
1326
+ VALUE_SET_NAME = "Referrals Where Weight Assessment May Occur"
1327
+ OID = "2.16.840.1.113883.3.600.1.1527"
1328
+ DEFINITION_VERSION = "20170504"
1329
+ EXPANSION_VERSION = "eCQM Update 2021-05-06"
1330
+
1331
+ SNOMEDCT = {
1332
+ "183515008", # Referral to physician (procedure)
1333
+ "183524004", # Referral to psychiatry service (procedure)
1334
+ "183583007", # Refer to mental health worker (procedure)
1335
+ "306136006", # Referral to liaison psychiatry service (procedure)
1336
+ "306163007", # Referral to dietetics service (procedure)
1337
+ "306164001", # Referral to community-based dietetics service (procedure)
1338
+ "306165000", # Referral to hospital-based dietetics service (procedure)
1339
+ "306166004", # Referral to occupational therapy service (procedure)
1340
+ "306167008", # Referral to community-based occupational therapy service (procedure)
1341
+ "306168003", # Referral to hospital-based occupational therapy service (procedure)
1342
+ "306226009", # Referral to mental health counseling service (procedure)
1343
+ "306227000", # Referral for mental health counseling (procedure)
1344
+ "306252003", # Referral to mental health counselor (procedure)
1345
+ "306344004", # Referral to professional allied to medicine (procedure)
1346
+ "306353006", # Referral to community-based dietitian (procedure)
1347
+ "306354000", # Referral to hospital-based dietitian (procedure)
1348
+ "308459004", # Referral to psychologist (procedure)
1349
+ "308470006", # Referral to general physician (procedure)
1350
+ "308477009", # Referral to psychiatrist (procedure)
1351
+ "390864007", # Referral for exercise therapy (procedure)
1352
+ "390866009", # Referral to mental health team (procedure)
1353
+ "390893007", # Referral to physical activity program (procedure)
1354
+ "408289007", # Refer to weight management program (procedure)
1355
+ "416790000", # Referral for home physical therapy (procedure)
1356
+ }