ceckenrode commited on
Commit
77927bb
·
1 Parent(s): b3f0552

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +634 -0
app.py ADDED
@@ -0,0 +1,634 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.set_page_config(layout="wide")
4
+
5
+ st.markdown("""
6
+ 📊Costly Condition 📑EDI 278A Request 📨ADT Message Type 🏥ADT Event 📄Clinical Document Example
7
+
8
+ 🩸Diabetes: “Diabetes Mellitus”💉AND (“Patient Admission” OR “Patient Discharge”)👩‍⚕️ADT^A01 💊PATIENT ADMIT/DISCHARGE 📝Discharge Summary
9
+
10
+ ❤️Heart Disease: “Heart Diseases”❤️AND (“Patient Admission” OR “Patient Discharge”)👩‍⚕️ADT^A01 💊PATIENT ADMIT/DISCHARGE 📝Discharge Summary
11
+
12
+ 😔Anxiety & Depression: “Depression” or “Anxiety”😢AND (“Patient Admission” OR “Patient Discharge”)👩‍⚕️ADT^A01💊PATIENT ADMIT/DISCHARGE 📝Discharge Summary
13
+
14
+ 🦴Musculoskeletal Disorders: “Musculoskeletal Diseases”🦴AND (“Patient Admission” OR “Patient Discharge”)👩‍⚕️ADT^A01 💊PATIENT ADMIT/DISCHARGE 📝Discharge Summary
15
+
16
+ 🤔What are MeSH terms❓ MeSH terms help sort articles in PubMed by topic. Here are the MeSH terms used for each costly condition:
17
+
18
+ 1. 🩸Diabetes: “Diabetes Mellitus”💉- high blood sugar levels disease
19
+
20
+ 2. ❤️Heart Disease: “Heart Diseases”❤️- troubles in the heart
21
+
22
+ 3. 😔Anxiety & Depression: “Depression” or “Anxiety”😢- feelings of sadness, worry and fear
23
+
24
+ 4. 🦴Musculoskeletal Disorders: “Musculoskeletal Diseases”🦴- problems in bones, muscles, and joints.
25
+ Costly Condition EDI 278A Request ADT Message Type ADT Event Clinical Document Example
26
+ Diabetes “Diabetes Mellitus”[MeSH Terms] AND (“Patient Admission”[Mesh] OR “Patient Discharge”[Mesh]) ADT^A01 PATIENT ADMIT/DISCHARGE Discharge Summary
27
+ Heart Disease “Heart Diseases”[MeSH Terms] AND (“Patient Admission”[Mesh] OR “Patient Discharge”[Mesh]) ADT^A01 PATIENT ADMIT/DISCHARGE Discharge Summary
28
+ Anxiety & Depression “Depression”[MeSH Terms] OR “Anxiety”[MeSH Terms] AND (“Patient Admission”[Mesh] OR “Patient Discharge”[Mesh]) ADT^A01 PATIENT ADMIT/DISCHARGE Discharge Summary
29
+ Musculoskeletal Disorders “Musculoskeletal Diseases”[MeSH Terms] AND (“Patient Admission”[Mesh] OR “Patient Discharge”[Mesh]) ADT^A01 PATIENT ADMIT/DISCHARGE Discharge Summary
30
+ explain the mesh terms for each
31
+ - MeSH terms are a way of categorizing and organizing articles in PubMed based on their subject matter. The MeSH terms used for each costly condition in the table are as follows:
32
+
33
+ 1. Diabetes: “Diabetes Mellitus” is a MeSH term used to describe a group of metabolic diseases characterized by high blood sugar levels.
34
+
35
+ 2. Heart Disease: “Heart Diseases” is a MeSH term used to describe a variety of conditions that affect the heart.
36
+
37
+ 3. Anxiety & Depression: “Depression” and “Anxiety” are separate MeSH terms used to describe mood disorders characterized by persistent feelings of sadness and/or anxiety.
38
+
39
+ 4. Musculoskeletal Disorders: “Musculoskeletal Diseases” is a MeSH term used to describe a variety of conditions that affect the bones, muscles, and joints.
40
+
41
+ Costly Condition EDI 278A Request ADT Message Type ADT Event Clinical Document Example
42
+ Diabetes
43
+ Heart Disease
44
+ Anxiety & Depression
45
+ Musculoskeletal Disorders
46
+
47
+ ISA*00* *00* *ZZ*SENDERID *ZZ*RECEIVERID *220505*1200*^*00501*000000001*0*P*:~
48
+ GS*HI*SENDERID*RECEIVERID*20220505*1200*1*X*005010X217~
49
+ ST*278*0001~
50
+ BHT*0078*11*10001234*20220505*1200*16~
51
+ HL*1**20*1~
52
+ NM1*X3*2*PAYER NAME*****PI*PAYERID~
53
+ HL*2*1*21*1~
54
+ NM1*1P*2*PROVIDER NAME*****XX*PROVIDER NPI~
55
+ HL*3*2*22*1~
56
+ NM1*IL*1*LAST NAME*FIRST NAME****MI*MEMBERID~
57
+ TRN*1*REFNUM*ABCDEFGHIJ~
58
+ UM*HS*I*1~
59
+ HCR*A3*APPROVAL NUMBER~
60
+ DTP*472*D8*20220506~
61
+ HI*ABK:DIAGNOSIS CODE~
62
+ MSG*Prior authorization approved for the requested service.~
63
+ SE*13*0001~
64
+ GE*1*1~
65
+ IEA*1*000000001~
66
+
67
+ Description of each part:
68
+
69
+ ISA: Interchange Control Header segment, contains sender and receiver information.
70
+ GS: Functional Group Header segment, contains functional group information.
71
+ ST: Transaction Set Header segment, marks the start of the transaction set.
72
+ BHT: Beginning of Hierarchical Transaction segment, contains transaction set information.
73
+ HL: Hierarchical Level segment, used to define hierarchical structure.
74
+ NM1: Name segment, used to identify entities such as payer, provider, and patient.
75
+ TRN: Trace segment, contains reference number for the transaction.
76
+ UM: Health Care Services Review segment, contains review information.
77
+ HCR: Health Care Services Review segment, contains review decision information.
78
+ DTP: Date/Time Qualifier segment, contains relevant dates.
79
+ HI: Health Care Information Codes segment, contains diagnosis codes.
80
+ MSG: Message Text segment, contains human-readable messages.
81
+ SE: Transaction Set Trailer segment, marks the end of the transaction set.
82
+ GE: Functional Group Trailer segment, marks the end of the functional group.
83
+ IEA: Interchange Control Trailer segment, marks the end of the interchange.
84
+ For the four high-cost service packages (Diabetes, Heart Disease, Anxiety & Depression, Musculoskeletal Disorders), the diagnosis list and clinical evidence for prior authorization would be included in the HI and MSG segments, respectively. The diagnosis codes would be specified in the HI segment, while the clinical evidence and any additional information would be provided in the MSG segment.
85
+
86
+
87
+
88
+
89
+ # In Context Learning:| Costly Condition | EDI 278A Request | ADT Message Type | ADT Event | Clinical Document Example |
90
+ |---------------------------|-----------------------------------|------------------|-----------|----------------------------------------------|
91
+ | Diabetes | REF|1234567890|DOE^JOHN||20230505120000|19730101|M|123 Main St^^Anytown^NC^12345^^^||(555)555-1234|(555)555-5678||123456789|999-99-9999|||||||||| | ADT^A01 | A01 | Admitting a patient to the hospital for diabetes management |
92
+ | Heart Disease | RQ|111111|20181214|20181220|Acme Health Plan|1234 1st Street|Anytown|NC|12345| | | | | | | | ADT^A01 | A01 | Admitting a patient to the hospital for heart surgery |
93
+ | Anxiety & Depression | REF|1234567890|DOE^JOHN||20230505120000|19730101|M|123 Main St^^Anytown^NC^12345^^^||(555)555-1234|(555)555-5678||123456789|999-99-9999|||||||||| | ADT^A01
94
+
95
+
96
+
97
+
98
+ | Costly Condition | EDI 278A Request | ADT Message Type | ADT Event | Clinical Document Example |
99
+ |---------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------------|
100
+ | Diabetes | | | |
101
+ | | | | |
102
+ | Heart Disease | | | |
103
+ | | | | |
104
+ | Anxiety & Depression | | | |
105
+ | | | | |
106
+ | Musculoskeletal Disorders | | | |
107
+ | | | | |
108
+ | Patient Information Update | MSH|^~\&|SendingApp|SendingFac|ReceivingApp|ReceivingFac|20230505120000||ADT^A08^ADT_A01|1234567|P|2.3|||||||||EVN|A08|20230505120000||||PID|1||123456789^^^MRN^MR||DOE^JOHN||20230505120000|M||||||||||||||||||PV1|1||||||||||||||||||| |
109
+ | | PRD|FR|SendingApp|SendingFac||||||| | ADT^A08 | A08 | Updating patient's demographic information |
110
+ | Diabetes | 0028|030| |Initial Claim Request |
111
+ | | CLM|123456789012345|10000| |17|01|Y| |7|Y|Y|Y|Y| | | |20120328| | | |0000000| |0000000|0000000| |
112
+ | Heart Disease | 0081|029| |Treatment Plan Request |
113
+ | | RQ|111111|20181214|20181220|Acme Health Plan|1234 1st Street|Anytown|NC|12345| | | | | | | |
114
+ | Anxiety & Depression | 0160|017| |Referral Request |
115
+ | | REF|1234567890|DOE^JOHN||20220505120000|19730101|M|123 Main St^^Anytown^NC^12345^^^||(555)555-1234|(555)555-5678||123456789|999-99-9999|||||||||| | | ADT^A01 | A01 | Admitting a patient to the hospital for a planned procedure |
116
+ | Musculoskeletal Disorders | 0450|012| |Authorization Request |
117
+ | | PRV|PC|1234 1st Street|Anytown|NC|12345|US|5555555555| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
118
+
119
+
120
+ ## Diabetes Clinical Document (for Teaching Purposes only)
121
+
122
+ Patient: John Doe
123
+ DOB: 01/01/1960
124
+ Diagnosis: Diabetes Mellitus Type 2 (ICD-10 E11.9)
125
+ Medications: Metformin 1000mg PO BID, Insulin glargine 20 units subcutaneous daily
126
+
127
+ Assessment:
128
+ Mr. Doe's blood glucose levels have been well controlled with his current medication regimen. His most recent A1c was 7.0%. He reports occasional mild hypoglycemia.
129
+
130
+ Plan:
131
+ Continue current medication regimen. Educate patient on the signs and symptoms of hypoglycemia and how to treat it. Schedule follow-up appointment in 3 months.
132
+
133
+ Signed: Dr. Jane Smith
134
+
135
+
136
+ ### EDI 278A Request Example
137
+
138
+ | Field | Value |
139
+ |-------|-------|
140
+ | Transaction Code | 278 |
141
+ | Transaction Type | Request |
142
+ | Service Type Code | HST |
143
+ | Service Type | Healthcare Services |
144
+ | Sender ID | 123456 |
145
+ | Receiver ID | 987654 |
146
+ | Patient ID | 123-45-6789 |
147
+ | Patient Name | Doe, John |
148
+ | Diagnosis Code | E11.9 |
149
+ | Diagnosis Description | Type 2 diabetes mellitus without complications |
150
+ | Service Start Date | 2023-05-01 |
151
+ | Service End Date | 2023-05-01 |
152
+ | CPT Code | 99213 |
153
+ | CPT Description | Office/outpatient visit, established patient |
154
+ | CPT Modifier | |
155
+ | CPT Quantity | 1 |
156
+ | CPT Unit Price | 100.00 |
157
+ | CPT Total Price | 100.00 |
158
+ | ICD Code | E11.9 |
159
+ | ICD Description | Type 2 diabetes mellitus without complications |
160
+ | Service Line Control Number | 1 |
161
+
162
+
163
+
164
+
165
+ ## Heart Disease Clinical Document
166
+
167
+ Patient: Jane Smith
168
+ DOB: 05/01/1955
169
+ Diagnosis: Myocardial Infarction (ICD-10 I21.3)
170
+ Medications: Aspirin 81mg PO daily, Metoprolol succinate 25mg PO daily, Atorvastatin 40mg PO daily
171
+
172
+ Assessment:
173
+ Ms. Smith's cardiac function has improved since her myocardial infarction. She has had no chest pain or shortness of breath. Her most recent EKG showed no evidence of ischemia.
174
+
175
+ Plan:
176
+ Continue current medication regimen. Schedule follow-up appointment in 6 months.
177
+
178
+ Signed: Dr. John Doe
179
+
180
+ ### EDI 278A Request Example
181
+
182
+ | Field | Value |
183
+ |-------|-------|
184
+ | Transaction Code | 278 |
185
+ | Transaction Type | Request |
186
+ | Service Type Code | HST |
187
+ | Service Type | Healthcare Services |
188
+ | Sender ID | 123456 |
189
+ | Receiver ID | 987654 |
190
+ | Patient ID | 987-65-4321 |
191
+ | Patient Name | Smith, Jane |
192
+ | Diagnosis Code | I21.3 |
193
+ | Diagnosis Description | ST elevation (STEMI) myocardial infarction of unspecified site |
194
+ | Service Start Date | 2023-05-01 |
195
+ | Service End Date | 2023-05-01 |
196
+ | CPT Code | 99214 |
197
+ | CPT Description | Office/outpatient visit, established patient |
198
+ | CPT Modifier | |
199
+ | CPT Quantity | 1 |
200
+ | CPT Unit Price | 150.00 |
201
+ | CPT Total Price | 150.00 |
202
+ | ICD Code | I21.3 |
203
+ | ICD Description | ST elevation (STEMI) myocardial inf
204
+
205
+ ## Anxiety & Depression Clinical Document
206
+
207
+ Patient: Alice Johnson
208
+ DOB: 06/15/1980
209
+ Diagnosis: Major Depressive Disorder (ICD-10 F32.1)
210
+ Medications: Sertraline 50mg PO daily
211
+
212
+ Assessment:
213
+ Ms. Johnson reports feeling sad and unmotivated. She has trouble sleeping and has lost interest in activities she used to enjoy. She denies any suicidal ideation.
214
+
215
+ Plan:
216
+ Increase sertraline to 100mg PO daily. Schedule follow-up appointment in 2 weeks.
217
+
218
+ Signed: Dr. Sarah Lee
219
+
220
+ ### EDI 278A Request Example
221
+
222
+ | Field | Value |
223
+ |-------|-------|
224
+ | Transaction Code | 278 |
225
+ | Transaction Type | Request |
226
+ | Service Type Code | HST |
227
+ | Service Type | Healthcare Services |
228
+ | Sender ID | 123456 |
229
+ | Receiver ID | 987654 |
230
+ | Patient ID | 456-78-9123 |
231
+ | Patient Name | Johnson, Alice |
232
+ | Diagnosis Code | F32.1 |
233
+ | Diagnosis Description | Major depressive disorder, single episode, moderate |
234
+ | Service Start Date | 2023-05-01 |
235
+ | Service End Date | 2023-05-01 |
236
+ | CPT Code | 90834 |
237
+ | CPT Description | Psychotherapy, 45 minutes with patient |
238
+ | CPT Modifier | |
239
+ | CPT Quantity | 1 |
240
+ | CPT Unit Price | 200.00 |
241
+ | CPT Total Price | 200.00 |
242
+ | ICD Code | F32.1 |
243
+ | ICD Description | Major depressive disorder, single episode, moderate |
244
+ | Service Line Control Number | 1 |
245
+
246
+
247
+ ### Musculoskeletal Disorders Clinical Document
248
+
249
+ Patient: Mark Thompson
250
+ DOB: 02/25/1972
251
+ Diagnosis: Low Back Pain (ICD-10 M54.5)
252
+ Medications: Ibuprofen 400mg PO TID
253
+
254
+ Assessment:
255
+ Mr. Thompson reports chronic low back pain that has been getting worse over the past several months. Physical exam reveals tenderness and limited range of motion in the lumbar spine.
256
+
257
+ Plan:
258
+ Prescribe physical therapy with focus on core strengthening exercises. Schedule follow-up appointment in 4 weeks.
259
+
260
+ Signed: Dr. James Chen
261
+
262
+
263
+ | Field | Value |
264
+ |-------|-------|
265
+ | Transaction Code | 278 |
266
+ | Transaction Type | Request |
267
+ | Service Type Code | HST |
268
+ | Service Type | Healthcare Services |
269
+ | Sender ID | 123456 |
270
+ | Receiver ID | 987654 |
271
+ | Patient ID | 789-01-2345 |
272
+ | Patient Name | Thompson, Mark |
273
+ | Diagnosis Code | M54.5 |
274
+ | Diagnosis Description | Low back pain |
275
+ | Service Start Date | 2023-05-01 |
276
+ | Service End Date | 2023-05-01 |
277
+ | CPT Code | 97110 |
278
+ | CPT Description | Therapeutic exercises |
279
+ | CPT Modifier | |
280
+ | CPT Quantity | 1 |
281
+ | CPT Unit Price | 150.00 |
282
+ | CPT Total Price | 150.00 |
283
+ | ICD Code | M54.5 |
284
+ | ICD Description | Low back pain |
285
+ | Service Line Control Number | 1 |
286
+
287
+
288
+ ADT A01 Admit Transaction Example
289
+
290
+ | Field | Value |
291
+ |-------|-------|
292
+ | MSH | \|HL7\|2.6\|ADT_A01_MESSAGE\|RECEIVER_APPLICATION\|20230505120000\|SECURITY\|ADT_A01\|MSG00001\|P\|2.6\
293
+
294
+
295
+
296
+
297
+ ## Big Four - Diabetes, Heart Disease, Anxiety & Depression and Muskoskeletal Disorders
298
+
299
+ | Costly Condition | Code Type | Code Value | Emoji | Code Description |
300
+ |---------------------------------|-----------|----------------------|-----------|---------------------------------------------------------|
301
+ | Diabetes | CPT | 99214, 99215 | 🩺 | Office/outpatient visit |
302
+ | | ICD-10 | E08.00 - E13.9 | 🍬 | Diabetes Mellitus |
303
+ | | SNOMED | 73211009, 44054006 | 🍬 | Diabetes Mellitus Type 1, Diabetes Mellitus Type 2 |
304
+ | | LOINC | 4548-4, 14647-2 | 🍬 | Hemoglobin A1c, Glucose |
305
+ | | Omaha | 1405-8, 1435-4 | 🍬 | Diabetes Management, Glucose Monitoring |
306
+ | Heart Disease | CPT | 92920, 92928 | 💔 | Percutaneous coronary intervention |
307
+ | | ICD-10 | I20.0 - I25.9 | 💔 | Ischemic Heart Diseases |
308
+ | | SNOMED | 53741008, 84114007 | 💔 | Coronary Artery Disease, Myocardial Infarction |
309
+ | | LOINC | 24331-1, 6768-6 | 💔 | Troponin I, Total Cholesterol |
310
+ | | Omaha | 2610-5, 2871-4 | 💔 | Hypertension Management, Lipid Management |
311
+ | Anxiety & Depression | CPT | 90791, 90834, 90837 | 😨 | Psychiatric diagnostic evaluation, psychotherapy |
312
+ | | ICD-10 | F32.0 - F39 | 😨 | Mood (Affective) Disorders |
313
+ | | SNOMED | 42343007, 39607008 | 😨 | Major Depressive Disorder, Generalized Anxiety Disorder |
314
+ | | LOINC | 75216-8, 73633-2 | 😨 | PHQ-9 Total Score, GAD-7 Total Score |
315
+ | | Omaha | 5250-7, 5361-7 | 😨 | Depression Management, Anxiety Management |
316
+ | Musculoskeletal Disorders | CPT | 97110, 97112 | 🏋️‍♂️ | Therapeutic exercises, neuromuscular reeducation |
317
+ | | ICD-10 | M00.00 - M99.9 | 🏋️‍♂️ | Diseases of the musculoskeletal system and connective tissue |
318
+ | | SNOMED | 239873007, 80931005 | 🏋️‍♂️ | Osteoarthritis, Low Back Pain |
319
+ | | LOINC | 8302-2, 71425-3 | 🏋️‍♂️ | Creatine Kinase, Aldolase |
320
+ | | Omaha | 3110-2, 3120-6 | 🏋️‍♂️ | Musculoskeletal Assessment, Pain Management |
321
+
322
+
323
+ | Rank | Costly Condition | Approval Code Type | Approval Codes | Code Description | Medical Necessity Rules |
324
+ |------|---------------------------------|--------------------|-------------------------|----------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
325
+ | 1 | 🍬 Diabetes | CPT | 99214, 99215 | Office/outpatient visit | - Diagnosis confirmation |
326
+ | | | ICD-10 | E08.00 - E13.9 | Diabetes Mellitus | - Documented treatment plan |
327
+ | | | | | | - Medication adherence |
328
+ | | | | | | - Glucose monitoring |
329
+ | | | | | | - Physician referral |
330
+ | 2 | 💔 Heart Disease | CPT | 92920, 92928 | Percutaneous coronary intervention | - Diagnosis confirmation |
331
+ | | | ICD-10 | I20.0 - I25.9 | Ischemic Heart Diseases | - Documented treatment plan |
332
+ | | | | | | - Conservative treatment history |
333
+ | | | | | | - Cardiac risk factors |
334
+ | | | | | | - Physician referral |
335
+ | 3 | 😨 Anxiety & Depression | CPT | 90791, 90834, 90837 | Psychiatric diagnostic evaluation, psychotherapy | - Diagnosis confirmation |
336
+ | | | ICD-10 | F32.0 - F39 | Mood (Affective) Disorders | - Documented treatment plan |
337
+ | | | | | | - Severity assessment |
338
+ | | | | | | - Conservative treatment history |
339
+ | | | | | | - Physician referral |
340
+ | 4 | 🏋️‍♂️ Musculoskeletal Disorders | CPT | 97110, 97112 | Therapeutic exercises, neuromuscular reeducation | - Diagnosis confirmation |
341
+ | | | ICD-10 | M00.00 - M99.9 | Diseases of the musculoskeletal system and connective tissue | - Documented treatment plan |
342
+ | | | | | | - Conservative treatment history |
343
+ | | | | | | - Functional limitation |
344
+ | | | | | | - Physician referral |
345
+ | 5 | 🦷 Dental Issues | CPT | 00100, 00170 | Anesthesia for intraoral procedures, incision and drainage of abscess | - Diagnosis confirmation |
346
+ | | | ICD-10 | K00.0 - K14.9 | Diseases of oral cavity and salivary glands | - Documented treatment plan |
347
+ | | | | | | - Conservative treatment history |
348
+ | | | | | | - Dentist referral |
349
+ | 6 | 🌊 Chronic Kidney Disease | CPT | 90935, 90937 | Hemodialysis, outpatient | - Diagnosis confirmation |
350
+ | | | ICD-10 | N18.1 - N18.9 | Chronic kidney disease | - Documented treatment plan |
351
+ | | | | | | - Stage of kidney disease |
352
+ | | | | | | - Conservative treatment history |
353
+ | | | | | | - Physician referral |
354
+
355
+
356
+ ## Costly Top Six with Code Description and Medical Necessity Rules
357
+
358
+ | Rank | Costly Condition | Approval Code Type | Approval Codes | Code Description | Medical Necessity Rules |
359
+ |------|---------------------------------|--------------------|-------------------------|----------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
360
+ | 1 | 🍬 Diabetes | CPT | 99214, 99215 | Office/outpatient visit | Diagnosis confirmation, documented treatment plan, medication adherence, glucose monitoring, physician referral |
361
+ | | | ICD-10 | E08.00 - E13.9 | Diabetes Mellitus | |
362
+ | 2 | 💔 Heart Disease | CPT | 92920, 92928 | Percutaneous coronary intervention | Diagnosis confirmation, documented treatment plan, conservative treatment history, cardiac risk factors, physician referral |
363
+ | | | ICD-10 | I20.0 - I25.9 | Ischemic Heart Diseases | |
364
+ | 3 | 😨 Anxiety & Depression | CPT | 90791, 90834, 90837 | Psychiatric diagnostic evaluation, psychotherapy | Diagnosis confirmation, documented treatment plan, severity assessment, conservative treatment history, physician referral |
365
+ | | | ICD-10 | F32.0 - F39 | Mood (Affective) Disorders | |
366
+ | 4 | 🏋️‍♂️ Musculoskeletal Disorders | CPT | 97110, 97112 | Therapeutic exercises, neuromuscular reeducation | Diagnosis confirmation, documented treatment plan, conservative treatment history, functional limitation, physician referral |
367
+ | | | ICD-10 | M00.00 - M99.9 | Diseases of the musculoskeletal system and connective tissue | |
368
+ | 5 | 🦷 Dental Issues | CPT | 00100, 00170 | Anesthesia for intraoral procedures, incision and drainage of abscess | Diagnosis confirmation, documented treatment plan, conservative treatment history, dentist referral |
369
+ | | | ICD-10 | K00.0 - K14.9 | Diseases of oral cavity and salivary glands | |
370
+ | 6 | 🌊 Chronic Kidney Disease | CPT | 90935, 90937 | Hemodialysis, outpatient | Diagnosis confirmation, documented treatment plan, stage of kidney disease, conservative treatment history, physician referral |
371
+ | | | ICD-10 | N18.1 - N18.9 | Chronic kidney disease | |
372
+
373
+
374
+ ## Costly Top Six:
375
+
376
+ | Rank | Costly Condition | 💰 Spending (billions) | CPT Range Start | CPT Range Finish | ICD-10 Diagnosis Codes |
377
+ |------|---------------------------------|------------------------|-----------------|------------------|------------------------|
378
+ | 1 | 🍬 Diabetes | 327 | 48100 | 48999 | E08.00 - E13.9 |
379
+ | 2 | 💔 Heart Disease | 230 | 92920 | 93799 | I20.0 - I25.9 |
380
+ | 3 | 😨 Anxiety & Depression | 210 | 90791 | 90899 | F32.0 - F39 |
381
+ | 4 | 🏋️‍♂️ Musculoskeletal Disorders | 176 | 97110 | 97799 | M00.00 - M99.9 |
382
+ | 5 | 🦷 Dental Issues | 130 | 00100 | 00192 | K00.0 - K14.9 |
383
+ | 6 | 🌊 Chronic Kidney Disease | 110 | 50010 | 50999 | N18.1 - N18.9 |
384
+
385
+
386
+ ## Service Types and Associated Evidence of Med Nec
387
+
388
+ | No. | Service Type | CPT Code Range | Rules for Required Evidence of Medical Necessity |
389
+ |-----|-----------------------------|----------------------|--------------------------------------------------------|
390
+ | 1 | 🫀 Organ Transplant | 50300-50380 | Diagnosis📄, waiting list📃, physician referral👩‍⚕️ |
391
+ | 2 | 🦴 Spinal Fusion Surgery | 22532-22812 | Diagnosis📄, conservative treatment history📚, physician referral👩‍⚕️ |
392
+ | 3 | 🍔 Bariatric Surgery | 43644-43775 | BMI🏋️, documented weight loss attempts📉, physician referral👩‍⚕️, psychological evaluation🧠 |
393
+ | 4 | 🦵 Joint Replacement Surgery | 27130-27447 | Diagnosis📄, conservative treatment history📚, physician referral👩‍⚕️ |
394
+ | 5 | 💉 Chemotherapy | 96401-96549 | Cancer diagnosis🦠, treatment plan💊, medication💊, dosage💊, frequency💊 |
395
+ | 6 | ☢️ Radiation Therapy | 77261-77799 | Cancer diagnosis🦠, treatment plan💊, physician referral👩‍⚕️ |
396
+ | 7 | ❤️ Cardiac Surgery | 33010-33999 | Diagnosis📄, conservative treatment history📚, physician referral👩‍⚕️ |
397
+ | 8 | 🧊 Dialysis | 90935-90999 | Diagnosis of kidney disease🩸, treatment plan💊, physician referral👩‍⚕️ |
398
+ | 9 | 🫁 Gastrointestinal Surgery | 43620-44979 | Diagnosis📄, conservative treatment history📚, physician referral👩‍⚕️ |
399
+ | 10 | 🖼️ Advanced Imaging Services | 70450-72159 (CT), 70540-72198 (MRI) | Clinical history📚, prior relevant imaging📸, symptoms justification😷 |
400
+ | 11 | 🎯 Interventional Radiology | 37220-37235 | Diagnosis📄, conservative treatment history📚, physician referral👩‍⚕️ |
401
+ | 12 | 🛌 Sleep Study | 95800-95811 | Documented sleep disorder symptoms😴, sleep diary📘, physician referral👩‍⚕️ |
402
+ | 13 | 💉 Infusion Therapy | 96360-96549 | Diagnosis📄, medication💊, dosage💊, frequency💊, duration⏳ |
403
+ | 14 | 💊 Pain Management | 64400-64530 | Diagnosis📄, conservative treatment history📚, treatment plan💊 |
404
+ | 15 | ❤️ Cardiac Stress Test | 93015-93018 | Documented symptoms😷, cardiac risk factors❤️, physician referral👩‍⚕️ |
405
+ | 16 | 🫁 Pulmonary Function Test | 94010-94799 | Documented respiratory issues😷, physician referral👩‍⚕️ |
406
+ | 17 | 🏃‍♂️ Physical Therapy | 97110-97546 | Diagnosis📄, treatment plan💊, physician referral👩‍⚕️ |
407
+ | 18 | 🧠 Mental Health Services | 90791-90899 | Diagnosis📄, treatment plan💊, physician referral👩‍⚕️ |
408
+ | 19 | 👓 Vision Services | 92002-92499 | Diagnosis📄, conservative treatment history📚, physician referral👩‍⚕️ |
409
+ | 20 | 👂 Hearing Services | 92502-92700 | Diagnosis📄, conservative treatment history📚, physician referral👩‍⚕️ |
410
+
411
+ ## Services Descending by Costly with CPT and ICD10 code ranges
412
+
413
+ | Rank | Costly Condition | 💰 Spending (billions) | CPT Range Start | CPT Range Finish | ICD-10 Diagnosis Codes |
414
+ |------|-----------------------------|------------------------|-----------------|------------------|------------------------|
415
+ | 1 | 🍬 Diabetes | 327 | 48100 | 48999 | E08.00 - E13.9 |
416
+ | 2 | 💔 Heart Disease | 230 | 92920 | 93799 | I20.0 - I25.9 |
417
+ | 3 | 😨 Anxiety & Depression | 210 | 90791 | 90899 | F32.0 - F39 |
418
+ | 4 | 🏋️‍♂️ Musculoskeletal Disorders | 176 | 97110 | 97799 | M00.00 - M99.9 |
419
+ | 5 | 🦷 Dental Issues | 130 | 00100 | 00192 | K00.0 - K14.9 |
420
+ | 6 | 🌊 Chronic Kidney Disease | 110 | 50010 | 50999 | N18.1 - N18.9 |
421
+ | 7 | 😷 Chronic Obstructive Pulmonary Disease | 70 | 94002 | 94799 | J44.0 - J44.9 |
422
+ | 8 | 🍺 Liver Disease | 40 | 47000 | 47999 | K70.0 - K77.9 |
423
+ | 9 | 🤧 Allergies | 25 | 31231 | 31294 | J30.0 - J39.9 |
424
+ | 10 | 🔥 Gastroesophageal Reflux Disease | 17 | 43200 | 43289 | K21.0 - K21.9 |
425
+ | 11 | 🎗️ Endometriosis | 22 | 56405 | 58999 | N80.0 - N80.9 |
426
+ | 12 | 🚽 Inflammatory Bowel Disease | 14.6 | 44140 | 44238 | K50.00 - K52.9 |
427
+ | 13 | 📢 Hearing Loss | 7.1 | 92502 | 92700 | H90.0 - H94.9 |
428
+ | 14 | 👓 Cataracts | 10.7 | 92002 | 92499 | H25.0 - H28.9 |
429
+ | 15 | 🦠 Hypothyroidism | 3.1 | 60210 | 60271 | E00.0 - E03.9 |
430
+ | 16 | 🩸 Anemia | 5.6 | 38100 | 38199 | D50.0 - D64.9 |
431
+ | 17 | 😰 Adrenal Disorders | 1 | 60500 | 60699 | E27.0 - E27.9 |
432
+ | 18 | 🌞 Skin Cancer | 8.1 | 96910 | 96999 | C43.0 - C44.9 |
433
+ | 19 | 💧 Urinary Incontinence | 8 | 51700 | 51798 | N39.3 - N39.4 |
434
+ | 20 | 🤕 Peripheral Neuropathy | 19 | 95900 | 96004 | G60.0 - G65.9 |
435
+ | 21 | 🍼 Asthma | 6 | 94010 | 94799 | J45.0 - J45.9 |
436
+ | 22 | 🦠 Infections | 15 | 10060 | 17999 | A00.0 - B99.9 |
437
+ | 23 | 🧠 Neurological Disorders | 12 | 95805 | 95872 | G00.0 - G99.9 |
438
+ | 24 | 🤰 Pregnancy Complications | 20 | 59000 | 59899 | O00.0 - O9A.9 |
439
+ | 25 | 💉 Blood Disorders | 8 | 38200 | 38999 | D65.0 - D89.9 |
440
+ | 26 | 🏥 Hospital-Acquired Conditions | 7 | 99800 | 99899 | E87.0 - E87.9 |
441
+ | 27 | 🦴 Osteoporosis | 5 | 73300 | 73399 | M80.0 - M82.9 |
442
+ | 28 | 🤒 Infectious Diseases | 10 | 00300 | 00352 | A00.0 - A99.9 |
443
+ | 29 | 🤕 Traumatic Injuries | 9 | 11000 | 11012 | S00.0 - T98.9 |
444
+ | 30 | 🍔 Obesity | 4 | 27800 | 27899 | E66.0 - E66.9 |
445
+
446
+
447
+
448
+
449
+
450
+ ## Services
451
+
452
+ | Service Type | CPT Code | Rules for Required Evidence of Medical Necessity |
453
+ |---------------------------|----------|-----------------------------------------------------------------------|
454
+ | Mental Health Services | 90791 | Physician referral, initial evaluation, treatment plan |
455
+ | Eye Examination | 92002 | Documented vision problems, physician referral |
456
+ | Hearing Test | 92502 | Documented hearing problems, physician referral |
457
+ | Sinus CT Scan | 31231 | Clinical history, prior relevant imaging, symptoms justification |
458
+ | Dental Surgery | 00100 | Diagnosis, treatment plan, physician referral |
459
+ | Thyroidectomy | 60210 | Diagnosis, conservative treatment history, physician referral |
460
+ | Cardiac Stress Test | 93015 | Documented symptoms, cardiac risk factors, physician referral |
461
+ | Pulmonary Function Test | 94002 | Documented respiratory issues, physician referral |
462
+ | Upper GI Endoscopy | 43200 | Documented gastrointestinal issues, physician referral |
463
+ | Liver Biopsy | 47000 | Diagnosis, treatment plan, physician referral |
464
+ | Kidney Stone Removal | 50010 | Diagnosis, conservative treatment history, physician referral |
465
+ | Adrenal Gland Surgery | 60500 | Diagnosis, conservative treatment history, physician referral |
466
+ | Pancreatic Surgery | 48100 | Diagnosis, conservative treatment history, physician referral |
467
+ | Splenectomy | 38100 | Diagnosis, conservative treatment history, physician referral |
468
+ | Colonoscopy | 44140 | Documented gastrointestinal issues, physician referral |
469
+ | Cystoscopy | 51700 | Documented urinary issues, physician referral |
470
+ | Hysterectomy | 58150 | Diagnosis, conservative treatment history, physician referral |
471
+ | Nerve Conduction Study | 95900 | Documented peripheral neuropathy, physician referral |
472
+ | Skin Biopsy | 96910 | Documented skin lesions, physician referral |
473
+ | Physical Therapy | 97110 | Physician referral, initial evaluation, treatment plan |
474
+
475
+
476
+
477
+
478
+ ## Main Headings - Policy or Plan
479
+
480
+ | Main Heading | Policy or Plan |
481
+ |--------------------------------------|----------------------------------------------------------------------|
482
+ | Service Code Grouping | Group codes based on service type or specialty |
483
+ | Listing for PA Medical Necessity | List of services requiring prior authorization for medical necessity |
484
+ | Approval Criteria | Guidelines and criteria for approving prior authorization requests |
485
+ | Required Evidence of Medical Necessity| Documentation needed to support medical necessity for PA requests |
486
+ | Service Codes (CPT) | Specific service codes that require prior authorization |
487
+
488
+ ## Service Code Groupings:
489
+
490
+ | Service Type | CPT Code | Rules for Required Evidence of Medical Necessity |
491
+ |-----------------------|----------|----------------------------------------------------------------------------|
492
+ | Physical Therapy | 97001 | Physician referral, initial evaluation, treatment plan |
493
+ | Occupational Therapy | 97165 | Physician referral, initial evaluation, treatment plan |
494
+ | Speech Therapy | 92507 | Physician referral, initial evaluation, treatment plan |
495
+ | MRI Brain | 70551 | Clinical history, prior relevant imaging, symptoms justification |
496
+ | CT Scan Abdomen | 74150 | Clinical history, prior relevant imaging, symptoms justification |
497
+ | Sleep Study | 95810 | Documented sleep disorder symptoms, sleep diary, physician referral |
498
+ | Cardiac Stress Test | 93015 | Documented symptoms, cardiac risk factors, physician referral |
499
+ | Echocardiogram | 93306 | Documented symptoms, cardiac risk factors, physician referral |
500
+ | Home Health Services | 99341 | Physician referral, homebound status, plan of care |
501
+ | Infusion Therapy | 96365 | Diagnosis, medication, dosage, frequency, and duration |
502
+ | Pain Management | 64490 | Diagnosis, conservative treatment history, treatment plan |
503
+ | Bariatric Surgery | 43644 | BMI, documented weight loss attempts, physician referral, psychological evaluation |
504
+ | Joint Replacement | 27447 | Diagnosis, conservative treatment history, physician referral |
505
+ | Spinal Fusion | 22630 | Diagnosis, conservative treatment history, physician referral |
506
+ | Outpatient Surgery | 10060 | Diagnosis, procedure necessity justification, physician referral |
507
+ | Allergy Testing | 86003 | Documented allergy symptoms, treatment history, physician referral |
508
+ | Chemotherapy | 96413 | Cancer diagnosis, treatment plan, medication, dosage, and frequency |
509
+ | Radiation Therapy | 77412 | Cancer diagnosis, treatment plan, physician referral |
510
+ | Dialysis | 90935 | Diagnosis of kidney disease, treatment plan, physician referral |
511
+ | Inpatient Hospitalization | 99223 | Medical necessity for admission, diagnosis, treatment plan, physician referral |
512
+
513
+
514
+
515
+
516
+ ## EDI Sample with All DX and Services
517
+
518
+
519
+ EDI:
520
+
521
+
522
+ ISA*00* *00* *ZZ*EMRSENDER *ZZ*RECEIVER *230504*1345*^*00501*000000001*0*P*:~
523
+ GS*HS*EMRSENDER*RECEIVER*20230504*1345*1*X*005010X221A1~
524
+ ST*278*0001~
525
+ BHT*0078*11*100012345*20230504*1345~
526
+ HL*1**20*1~
527
+ NM1*X3*2*RECEIVER*****46*123456789~
528
+ HL*2*1*21*1~
529
+ NM1*1P*2*DOE*JANE****46*987654321~
530
+ HL*3*2*19*1~
531
+ TRN*1*100012345*987654321~
532
+ UM*HS*100012345*987654321~
533
+ HCR*A*1*ZZZ001~
534
+ HI*BF:7295:::3~
535
+ HI*BF:72148:::1~
536
+ HI*BF:72156:::1~
537
+ HI*BF:72158:::1~
538
+ HI*BF:S72.0:::1~
539
+ HI*BF:M16.10:::1~
540
+ SE*13*0001~
541
+ GE*1*1~
542
+ IEA*1*000000001~
543
+
544
+
545
+ ## ADT A08 Event
546
+
547
+ ADT:
548
+
549
+
550
+ MSH|^~\&|EMRSENDER|FACILITY_A|RECEIVER|FACILITY_A|20230504||ADT^A08^ADT_A01|0001|P|2.5
551
+ EVN|A08|20230504|||BROWN^SARAH|20230504
552
+ PID|||100012345^^^FACILITY_A^MRN||PATIENT^JOHN^M||||||||||||100012345
553
+ PV1||I|FLOOR^1001^1^FACILITY_A||||987654321^DOE^JANE|||||||||||||||||||||||||20230504
554
+ PV2|||^^^FACILITY_A|||||||||||||||||||||||||||||||||||||3
555
+ PV3|3|ICD10|S72.0^M16.10^Z96.649
556
+ PV4||O
557
+ AL1|1|||^^^72148^72156^72158
558
+ DG1|1|ICD10|S72.0|Fracture of neck of femur|20230504
559
+ DG1|2|ICD10|M16.10|Bilateral primary osteoarthritis of hip|20230504
560
+ ZCD|3|CPT|72148^72156^72158
561
+
562
+
563
+ ## Clinical Document
564
+
565
+ CCD:
566
+
567
+ Clinical Document
568
+
569
+ **Patient:** John Patient
570
+
571
+ **Date:** 2023-05-04
572
+
573
+ **Chief Complaint:**
574
+ John experienced a fall, resulting in a **hip injury**. The patient complains of severe pain and difficulty in walking.
575
+
576
+ **History of Present Illness:**
577
+ The patient has a history of **bilateral primary osteoarthritis of the hip (M16.10)**. The fall exacerbated the existing condition, causing **fracture of the neck of femur (S72.0)**.
578
+
579
+ **Physical Examination:**
580
+ Upon examination, the patient had severe pain, limited range of motion, and swelling of the affected hip. Imaging studies were ordered to assess the extent of the damage.
581
+
582
+ **Imaging Studies:**
583
+ 1. **MRI of the pelvis (CPT 72148)**
584
+ 2. **MRI of the bilateral hips (CPT 72156)**
585
+ 3. **MRI of the bilateral femurs (CPT 72158)**
586
+
587
+ The MRI scans revealed significant damage to the hip joint, confirming the **fracture of the neck of femur (S72.0)** and worsening of the **bilateral primary osteoarthritis of the hip (M16.10)**.
588
+
589
+ **Assessment:**
590
+ Based on the clinical findings and imaging results, it is evident that the patient requires immediate surgical intervention to repair the hip joint and prevent further complications.
591
+
592
+ **Plan:**
593
+ 1. Admit the patient to the hospital for surgical treatment.
594
+ 2. Perform an emergent **hip replacement surgery (Z96.649)** to repair the hip joint and restore function.
595
+ 3. Postoperative rehabilitation and physical therapy to regain strength and mobility.
596
+
597
+ **Medical Necessity:**
598
+ The emergent hip replacement surgery is medically necessary due to the following factors:
599
+ - Severe pain and functional impairment caused by the **fracture of the neck of femur (S72.0)**
600
+ - Worsening of pre-existing **bilateral primary osteoarthritis of the hip (M16.10)**
601
+ - High risk of complications if left untreated
602
+
603
+ Based on the clinical evidence, the patient's condition warrants immediate surgical intervention to alleviate pain, restore function, and prevent further complications. The surgery is deemed medically necessary to improve the patient's quality of life and long-term prognosis.
604
+
605
+ **Attending Physician:** Dr. Sarah Brown
606
+
607
+ ## Note and Summary Index by Code Type
608
+
609
+ | Code Value | Code Description | Code Type | Decision Relevance | Additional Information |
610
+ |------------|-----------------------------------------------|-----------------|------------------------------------|---------------------------------------------|
611
+ | 7295 | Authorization and Referral Services | EDI | Required for authorization | |
612
+ | 72148 | MRI of the pelvis | CPT | Medical necessity for imaging | |
613
+ | 72156 | MRI of the bilateral hips | CPT | Medical necessity for imaging | |
614
+ | 72158 | MRI of the bilateral femurs | CPT | Medical necessity for imaging | |
615
+ | S72.0 | Fracture of the neck of femur | ICD10 | Diagnosis, treatment decision | |
616
+ | M16.10 | Bilateral primary osteoarthritis of the hip | ICD10 | Diagnosis, treatment decision | |
617
+ | Z96.649 | Presence of unspecified artificial hip joint | ICD10 | Procedure, treatment decision | |
618
+ | A08 | Update Patient Information | ADT Event | Patient update after surgery | |
619
+ | 72148 | MRI of the pelvis | ZCD | Diagnostic code for imaging | |
620
+ | 72156 | MRI of the bilateral hips | ZCD | Diagnostic code for imaging | |
621
+ | 72158 | MRI of the bilateral femurs | ZCD | Diagnostic code for imaging | |
622
+ | 987654321 | Dr. Jane Doe - Initial Attending Physician | NPI | Patient care provider | Taxonomy: 207Q00000X (Family Medicine) |
623
+ | 123456789 | Dr. Robert Smith - Second Attending Physician | NPI | Patient care provider | Taxonomy: 207Q00000X (Family Medicine) |
624
+ | 000000001 | Dr. Sarah Brown - Surgeon | NPI | Patient care provider, surgery | Taxonomy: 207XS0106X (Orthopedic Surgery) |
625
+ | 555444333 | Facility A | Facility NPI | Patient care facility | Name: Facility A |
626
+ | | | Facility Address| | Address: 123 Main St, City, State, Zip Code |
627
+ | J7325 | Hyaluronan or derivative, Synvisc or Synvisc-One, for intra-articular injection, 1 mg | HCPCS | Medication used during treatment | |
628
+ | Q4081 | Injection, dexamethasone sodium phosphate, 1 mg | HCPCS | Medication used during treatment | |
629
+ | 99238 | Hospital discharge day management, 30 minutes or less | CPT | Follow-up plan | |
630
+ | 99239 | Hospital discharge day management, more than 30 minutes | CPT | Follow-up plan | |
631
+
632
+
633
+
634
+ """)