-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCPT.json
10623 lines (10623 loc) · 324 KB
/
CPT.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"description": "CONSULATIONS AND GENERAL SERVICE",
"sub_category": [
{
"description": "OUTPATIENT/INPATIENT CONSULTATIONS",
"code": [
{
"code": "99241",
"description": "New consultation with a Clinical Officer / Dental Therapist"
},
{
"code": "99211",
"description": "Follow up consultation with a Clinical Officer / Dental Therapist"
},
{
"code": "99242",
"description": "New consultation with an Assistant Medical Officer / Assistant Dental Officer"
},
{
"code": "99212",
"description": "Follow up consultation with an Assistant Medical Officer / Assistant Dental Officer"
},
{
"code": "99243",
"description": "New consultation with a Medical Officer / Dental Officer"
},
{
"code": "99213",
"description": "Follow up consultation with a Medical Officer / Dental Officer"
},
{
"code": "99244",
"description": "New consultation with a Medical Specialist / Dental Specialist"
},
{
"code": "99214",
"description": "Follow up consultation with a Medical Specialist / Dental Specialist"
},
{
"code": "99245",
"description": "New consultation with a Super Specialist"
},
{
"code": "99215",
"description": "Follow up consultation with a Super Specialist"
},
{
"code": "99382",
"description": "New consultation therapist with diploma(physiotherapy, occupational therapy, speech therapy)"
},
{
"code": "97169",
"description": "Follow up Consultation therapist with diploma(physiotherapy, occupational therapy, speech therapy)"
},
{
"code": "99383",
"description": "New consultation therapist with degree(physiotherapy, occupational therapy, speech therapy)"
},
{
"code": "99386",
"description": "Follow up Consultation therapist/psychology with degree(physiotherapy, occupational therapy, speech therapy)"
},
{
"code": "99387",
"description": "New consultation therapist/psychology specialist (physiotherapy, occupational therapy, speech therapy)"
},
{
"code": "99429",
"description": "Follow up consultation therapist specialist (physiotherapy, occupational therapy, speech therapy)"
},
{
"code": "97802",
"description": "New consultation Nutritionist"
},
{
"code": "97803",
"description": "Follow up consultation Nutritionist"
},
{
"code": "99205",
"description": "Registration (new file) for a new patient"
},
{
"code": "99251",
"description": "Consultation for observation"
}
]
},
{
"description": "CROSS AND PANEL CONSULTATIONS",
"code": [
{
"code": "99252",
"description": "Cross consultation within and between hospital(s)"
},
{
"code": "99253",
"description": "Panel consultation within the same discipline (panel with at least three doctors)"
},
{
"code": "99254",
"description": "Panel multidisciplinary consultation (panel with at least three doctors)"
},
{
"code": "99255",
"description": "Consultation with a multidisciplinary panel plus administrators"
}
]
},
{
"description": "ACCOMODATIONS",
"code": [
{
"code": "99217",
"description": "High Dependent Unit (HDU)"
},
{
"code": "99218",
"description": "VIP room"
},
{
"code": "99219",
"description": "IPPM or Private Room (grade one)"
},
{
"code": "99220",
"description": "General ward"
},
{
"code": "99234",
"description": "ICU-CCU ward"
},
{
"code": "99235",
"description": "Rehabilitation ward"
},
{
"code": "99236",
"description": "Isolated or high risk ward"
}
]
},
{
"description": "HOME VISITS",
"code": [
{
"code": "99341",
"description": "New patient home visit with a Clinical Officer/ Clinical Physiotherapist / Occupational Therapist"
},
{
"code": "99347",
"description": "Follow up patient home visit with a Clinical Officer/ Clinical Physiotherapist/ Occupational Therapist"
},
{
"code": "99342",
"description": "New patient home visit with an Assistant Medical Officer (AMO)"
},
{
"code": "99348",
"description": "Follow up patient home visit with an Assistant Medical Officer (AMO)"
},
{
"code": "99343",
"description": "New patient home visit with a General Practitioner (GP/MD)/ Physiotherapy Officer/ Occupational Therapy officer"
},
{
"code": "99349",
"description": "Follow up patient home visit with a General Practitioner (GP/MD)/ Physiotherapy Officer/ Occupational Therapy officer"
},
{
"code": "99344",
"description": "New patient home visit with a Specialist/ Specialist Physiotherapist"
},
{
"code": "99350",
"description": "Follow up patient home visit with a Specialist/ Specialist Physiotherapist"
},
{
"code": "99345",
"description": "New patient home visit with a Super Specialist"
},
{
"code": "99334",
"description": "Follow up patient home visit with a Super Specialist"
},
{
"code": "99339",
"description": "New patient home visit with other cardres (nurses, pharmacist, social worker, etc.)"
},
{
"code": "99340",
"description": "Follow up patient home visit with other cardres (nurses, pharmacist, social worker, etc.)"
}
]
},
{
"description": "NURSING CARE SERVICES",
"code": [
{
"code": "99304",
"description": "Nursing services at the Outpatient Department (OPD)"
},
{
"code": "99305",
"description": "Nursing care at the general ward"
},
{
"code": "99306",
"description": "Nursing services at the Emergency Department (EMD)"
},
{
"code": "99307",
"description": "Nursing care at the ICU and CCU"
},
{
"code": "99308",
"description": "Nursing care at the High Dependent Unit (HDU)"
},
{
"code": "99309",
"description": "Nursing care at the VIP"
},
{
"code": "99310",
"description": "Nursing care at the IPPM or private room (grade one)"
},
{
"code": "99315",
"description": "Nursing care at the rehabilitation ward"
},
{
"code": "99316",
"description": "Nursing care at the isolated or high risk ward"
}
]
},
{
"description": "GENERAL SERVICES",
"code": [
{
"code": "99082",
"description": "Parking services"
},
{
"code": "99497",
"description": "Medical Nutritional Therapy (Oral / Parenteral / Enteral)"
},
{
"code": "99281",
"description": "Ambulance services"
},
{
"code": "97804",
"description": "Food Services"
}
]
},
{
"description": "TELEPHONE ASSESSMENT & MANAGEMENT SERVICES",
"code": [
{
"code": "98966",
"description": "Telephone assessment and management service, 5-10 minutes of medical discussion"
},
{
"code": "98967",
"description": "Telephone assessment and management service,11-20 minutes of medical discussion"
},
{
"code": "98968",
"description": "Telephone assessment and management service,21-30 minutes of medical discussion"
}
]
},
{
"description": "COUNSELLING SERVICES",
"code": [
{
"code": "99381",
"description": "Provider Initiating Testing and Counseling (PITC) children below 09 years"
},
{
"code": "99384",
"description": "Provider Initiating Testing and Counseling (PITC) adolescent"
},
{
"code": "99385",
"description": "Provider Initiating Testing and Counseling (PITC) adult"
},
{
"code": "99406",
"description": "Counseling"
}
]
},
{
"description": "VACCINATION/IMMUNIZATION SERVICES",
"code": [
{
"code": "90476",
"description": "Inactivated Poliovirus Vaccine (IPV)"
},
{
"code": "90585",
"description": "Baccile Calmette Guerin (BCG ) Vaccine"
},
{
"code": "90621",
"description": "Meningococcus Vaccine"
},
{
"code": "90649",
"description": "Human Papilloma Virus (HPV) Vaccine"
},
{
"code": "90670",
"description": "Pneumococcal Vaccine (PCV-13)"
},
{
"code": "90675",
"description": "Rabies Virus Vaccine"
},
{
"code": "90680",
"description": "Rotavirus Vaccine"
},
{
"code": "90696",
"description": "Diphtheria, Tetanus Toxoids, Acellular Pertussis, Haemophilus Influenzae Type B, Hepatitis B (DPT+Hepb+Hib) Vaccine"
},
{
"code": "90707",
"description": "Measles, Mumps, and Rubella (MMR) Vaccine"
},
{
"code": "90713",
"description": "Poliovirus Vaccine-Oral (OPV)"
},
{
"code": "90714",
"description": "Tetanus And Diphtheria Toxoids (TT) Vaccine"
},
{
"code": "90717",
"description": "Yellow Fever Vaccine"
},
{
"code": "90739",
"description": "Hepatitis B Virus (HBV) Vaccine"
},
{
"code": "90471",
"description": "Unspecified Vaccination Procedures E.g. New Vaccine"
}
]
}
]
},
{
"description": "LABORATORY SERVICES",
"sub_category": [
{
"description": "CLINICAL CHEMISTRY",
"code": [
{
"code": "84311",
"description": "Adenosine Deaminase (ADA) – Serum"
},
{
"code": "82040",
"description": "Albumin"
},
{
"code": "84182",
"description": "Albumin/Globulin Ratio"
},
{
"code": "84075",
"description": "Alkaline Phosphatase (ALP) Serum"
},
{
"code": "84460",
"description": "Alanine Aminotransferaseor (ALT) / Serum Glutamic Pyruvate Transaminase (SGPT)"
},
{
"code": "82150",
"description": "Amylase"
},
{
"code": "84450",
"description": "Aspartate Aminotransferase (AST) / Serum Glutamic Oxaloacetic Transaminase (SGOT)"
},
{
"code": "84702",
"description": "Beta - Human Chorionic Gonadotropin (β-HCG) - Serum"
},
{
"code": "82248",
"description": "Bilirubin Direct"
},
{
"code": "82247",
"description": "Bilirubin Total"
},
{
"code": "86140",
"description": "C-Reactive Protein (CRP)"
},
{
"code": "82310",
"description": "Calcium - Serum/Post Dialysis Calcium"
},
{
"code": "82435",
"description": "Chloride – Serum"
},
{
"code": "82436",
"description": "Chloride-Urine"
},
{
"code": "82465",
"description": "Cholesterol (Total)"
},
{
"code": "82550",
"description": "Creatine Kinase (CK- MB)"
},
{
"code": "82565",
"description": "Creatinine/Post Dialysis Creatinine"
},
{
"code": "82945",
"description": "Glucose Level on Body Fluids (CSF Ascitic, Peritonial, Pleural, Pericadial, Synovial)"
},
{
"code": "84157",
"description": "Protein Level on Body Fluids (CSF, Ascitic, Peritonial, Pleural)"
},
{
"code": "85397",
"description": "D-Dimer"
},
{
"code": "82728",
"description": "Ferritin"
},
{
"code": "82746",
"description": "Folic Acid Level (Folate)"
},
{
"code": "82977",
"description": "Gamma - Glutamyltransferase (GGT)"
},
{
"code": "82947",
"description": "Fasting/Random Blood Glucose (FBG/RBG)"
},
{
"code": "83036",
"description": "Glycosylated Haemoglobin (HbA1c)"
},
{
"code": "83718",
"description": "High Density Lipoprotein (HDL)"
},
{
"code": "83540",
"description": "Iron (Fe)"
},
{
"code": "83550",
"description": "Iron Saturation (% Saturation)"
},
{
"code": "83615",
"description": "Lactate Dehydrogenase (LDH)"
},
{
"code": "83721",
"description": "Low Density Lipoprotein (LDL)"
},
{
"code": "83735",
"description": "Magnesium"
},
{
"code": "84100",
"description": "Phosphorus/Post Dialysis Phosphorus"
},
{
"code": "84132",
"description": "Potassium/Post Dialysis Potassium"
},
{
"code": "84156",
"description": "Protein in Urine"
},
{
"code": "83690",
"description": "Lipase Serum"
},
{
"code": "84165",
"description": "Protein Electrophoresis Serum"
},
{
"code": "82607",
"description": "Vitamin B-12 (Cyanocobalamin)"
},
{
"code": "84295",
"description": "Sodium/Post Dialysis Sodium"
},
{
"code": "84432",
"description": "Thyroglobulin Antibodies (Tg Ab)"
},
{
"code": "84466",
"description": "Transferrin"
},
{
"code": "84478",
"description": "Triglycerides"
},
{
"code": "84484",
"description": "Troponin-I"
},
{
"code": "84560",
"description": "Uric Acid"
},
{
"code": "80202",
"description": "Vancomycin Level"
},
{
"code": "82652",
"description": "Vitamin D-25 (Dihydroxyvitamin D, 1, 25)"
},
{
"code": "83719",
"description": "Very Low Density Lipoprotein (VLDL)"
},
{
"code": "82570",
"description": "24Hr Creatinine Urine"
},
{
"code": "84133",
"description": "24Hr Potassium Urine"
},
{
"code": "84300",
"description": "24Hr Sodium Urine"
},
{
"code": "84181",
"description": "Globulin"
},
{
"code": "82374",
"description": "Carbondioxide Serum"
},
{
"code": "82951",
"description": "Oral Glucose Tolerance Test (OGTT)"
},
{
"code": "84066",
"description": "Acid Phosphotase Serum"
},
{
"code": "82803",
"description": "Blood Gas Panel"
},
{
"code": "80375",
"description": "Urine Drug Screening (UDS )"
},
{
"code": "80299",
"description": "Quantitation of Therapeutic Drugs"
},
{
"code": "80197",
"description": "Tacrolimus Level"
},
{
"code": "80195",
"description": "Sirolimus Level"
},
{
"code": "80169",
"description": "Everolimus Level"
}
]
},
{
"description": "IMMUNOLOGY",
"code": [
{
"code": "82105",
"description": "Alpha Feto Protein (AFP)"
},
{
"code": "83880",
"description": "Brain Natriuretic Peptide (BNP)"
},
{
"code": "86304",
"description": "Cancer Antigen - 125 (CA - 125)"
},
{
"code": "82378",
"description": "Carcinoembryonic Antigen (CEA)"
},
{
"code": "82530",
"description": "Cortisol"
},
{
"code": "80158",
"description": "Cyclosporine Level"
},
{
"code": "82670",
"description": "Estradiol Level"
},
{
"code": "83001",
"description": "Follicle Stimulating Hormone (FSH)"
},
{
"code": "83003",
"description": "Growth Hormone (GH)"
},
{
"code": "82784",
"description": "Immunoglobulin A (IgA )"
},
{
"code": "86001",
"description": "Immunoglobulin G (IgG)"
},
{
"code": "86005",
"description": "Immunoglobulin E for Allergic Substance (IgE)"
},
{
"code": "83525",
"description": "Insulin"
},
{
"code": "83002",
"description": "Luteinizing Hormone (LH)"
},
{
"code": "84144",
"description": "Progesterone"
},
{
"code": "84146",
"description": "Prolactin"
},
{
"code": "84153",
"description": "Prostate Specific Antigen (PSA) Measurement"
},
{
"code": "84152",
"description": "Prostate Specific Antigen (PSA) Level"
},
{
"code": "84681",
"description": "C – Peptide"
},
{
"code": "84402",
"description": "Testosterone"
},
{
"code": "86812",
"description": "Immunoglobulin M (IgM)"
},
{
"code": "86807",
"description": "Complement Dependent Cytotoxicity Compatibility ( CDCC)"
},
{
"code": "81371",
"description": "Human Leukocyte Antigen Typing (HLA Typing)"
},
{
"code": "88182",
"description": "Flowcytometry Lymphocyte Crossmatch"
},
{
"code": "86316",
"description": "Tumor Markers Analysis ( Others )"
},
{
"code": "86829",
"description": "Donor Specific Antibody (DSA) to HLA Antigen"
},
{
"code": "86830",
"description": "Panel Reactiveantibody Screening HLA Class I & Ii"
}
]
},
{
"description": "SEROLOGY",
"code": [
{
"code": "86060",
"description": "Anti Streptolysin O Titre (ASOT)"
},
{
"code": "86039",
"description": "Autoimmune Antibodies (dsDNA)"
},
{
"code": "86622",
"description": "Brucella Abortus Antigen (Ag)"
},
{
"code": "87147",
"description": "Chlamydia (ELISA)"
},
{
"code": "86644",
"description": "Cytomegalovirus Antibody test (CMC-IgG)"
},
{
"code": "86645",
"description": "Cytomegalovirus Antibody test (CMV-IgM)"
},
{
"code": "86664",
"description": "Epstein Barr Virus IgG – Serum"
},
{
"code": "86663",
"description": "Epstein Barr Virus IgM- Serum"
},
{
"code": "86705",
"description": "Hepatitis B Core Igm Antibody (HBcAb)"
},
{
"code": "86709",
"description": "Hepatitis A Antibody (IgM )"
},
{
"code": "86707",
"description": "Hepatitis B Envelope Antibody (HBeAb)"
},
{
"code": "87350",
"description": "Hepatitis B Envelope Antigen (HBeAg)"
},
{
"code": "86706",
"description": "Hepatitis B Surface Antibody (HBsAb)"
},
{
"code": "87340",
"description": "Hepatitis B Surface Antigen (HBsAg)"
},
{
"code": "86803",
"description": "Hepatitis C Antibody (HCVAb)"
},
{
"code": "86695",
"description": "Herpes Simplex Virus - Type 1(HSV-1) IgG & IgM"
},
{
"code": "86696",
"description": "Herpes Simplex Virus - Type 2(HSV-2) IgG & IgM"
},
{
"code": "86689",
"description": "HIV 1 & 2 Antibodies (ELISA)"
},
{
"code": "87338",
"description": "Helicobacter Pylori (H.pylori) Antigen test"
},
{
"code": "86677",
"description": "Helicobacter Pylori (H.pylori) Antibody test"
},
{
"code": "81025",
"description": "Urine for pregnancy test (UPT)"
},
{
"code": "86757",
"description": "Proteus abortus antibody test (Rapid)"
},
{
"code": "86430",
"description": "Rheumatoid Factor (RF) Qualitative"
},
{
"code": "86592",
"description": "Syphilis screening Test (VDRL, RPR or SD Bioline)"
},
{
"code": "86762",
"description": "Rubella Antibody Test (IgG /IgM)"
},
{
"code": "86777",
"description": "Toxoplasma Antibody Test (IgG)"
},
{
"code": "86778",
"description": "Toxoplasma Antibody Test (IgM)"
},
{
"code": "86780",
"description": "Treponema Pallidum Haemagglutination Test (TPHA/TPPA)"
},
{
"code": "86768",
"description": "Widal Test"
},
{
"code": "84480",
"description": "Tri - Iodothyronine Hormone (T3)"
},
{
"code": "84437",
"description": "Thyroxine Hormone (T4)"
},
{
"code": "84155",
"description": "Total Protein Serum"
},
{
"code": "84443",
"description": "Thyroid Stimulating Hormone (TSH)"
},
{
"code": "84520",
"description": "Urea Nitrogen (Bun)/Post Dialysis Urea Nitrogen (BUN)"
},
{
"code": "86021",
"description": "Anti Neutrophil Cystoplasmic Antibodies (ANCA-C)"
},
{
"code": "86406",
"description": "Cryptococcal Antigen (CrAg)"
},
{
"code": "86790",
"description": "Antibody Test for Influenza Virus, Rift Valley Fever, Chikungunya Virus, Zika Virus, Dengue Virus,Ebola Virus"
},
{
"code": "86431",
"description": "Rheumatoid Factor (RF) Quantitative"
},
{
"code": "82024",
"description": "Adenocorticotropic Hormone (ACTH)"
},
{
"code": "86704",
"description": "Hepatitis B Core Antibody (HBcAb)"
},
{
"code": "82164",
"description": "Angiotensin I"
},
{
"code": "82163",
"description": "Angiotensin II"
},
{
"code": "82671",
"description": "Oestrogen"
},
{
"code": "86703",
"description": "HIV 1& 2 Antibody Rapid Test"
},
{
"code": "86708",
"description": "Hepatitis A Antibody"
},
{
"code": "86022",
"description": "Anti-Neutrophil Cystoplasmic Antibody(ANCA-P)"
},
{
"code": "86225",
"description": "Anti-Nuclear Antibody (ANA)"
},
{
"code": "86403",
"description": "Brucella Antibody Test (IgG)/ (IgM)"
},
{
"code": "86828",
"description": "Toxoplasma Antigen Test"
}
]
},
{
"description": "HAEMATOLOGY",
"code": [
{
"code": "85025",
"description": "Full Blood Picture (FBP) / Complete Blood Count (CBC)"
},
{
"code": "85097",
"description": "Bone Marrow Smear Interpretation"
},
{
"code": "86360",
"description": "CD3/CD4/CD8 T Cell Count"
},
{
"code": "85651",
"description": "Erythrocyte Sedimentation Rate (ESR)"
},
{
"code": "85230",
"description": "Factor VII"
},
{
"code": "85247",
"description": "Factor VII"
},
{
"code": "85384",
"description": "Fibrinogen"
},
{
"code": "82955",
"description": "Glucose - 6 Phosphatase Dehydrogenase(G-6PGD)"
},
{
"code": "83026",
"description": "Haemoglobin (Hb)"
},
{
"code": "82664",
"description": "Haemoglobin Electropheresis + Sickling Test"
},
{
"code": "86235",
"description": "Lupus Erythromatous Cell (LE Cell)."
},
{
"code": "85705",
"description": "Partial Thromboplastin Time (PTT)"
},
{
"code": "85060",
"description": "Peripheral Blood Smear (PBS)"
},
{
"code": "81206",
"description": "Philadelphia Chromosome"
},
{
"code": "85049",
"description": "Platelet Count, Automated Test"
},
{
"code": "85210",
"description": "Prothrombin Time (PT)"
},
{
"code": "85660",
"description": "Sickling Test"
},
{
"code": "85002",
"description": "Bleeding Time"
},
{
"code": "85732",
"description": "Activated Partial Thrombin Time (APTT)"
},
{
"code": "85045",
"description": "Reticulocyte Count"
}