PROC_TABLE
This table provides helpful context and categorical mapping around CPT/HCPCS procedure codes.
Queries that source from PROC_TABLE table
What is in the PROC_TABLE table?
Results are returned as a json, pySpark DataFrame, or pandas DataFrame (default).
feature | description | example |
---|---|---|
proc_code | HCPCS or CPT procedural code | A9520 |
proc_subcategory | Name of the procedure sub-category | Transportation, Medical & Surgical Supplies, Miscellaneous & Experimental |
proc_category | Name of the procedure category | Transportation Medical & Surgical Supplies Miscellaneous & Experimental |
proc_desc | Description procedure code | Tc99 Tilmanocept diag 0.5mci |
Helper Function within the CareQuery API to help understand the underlying PROC_TABLE dataset.
# import package
from care_query.care_query import CareQuery
# instantiate and connect
cq = CareQuery(email = "your-email",
token = "your-api-token")
# return details
print(cq.glossary.table_detail('PROC_TABLE'))
Updated about 1 year ago