ORG_PAYOR_PROC_TABLE

This table provides monthly aggregate totals by organizational provider, payor and procedure codes.

Queries that source from ORG_PAYOR_PROC_TABLE table

What is in the ORG_PAYOR_PROC_TABLE table?

Results are returned as a json, pySpark DataFrame, or pandas DataFrame (default).

featuredescriptionexample
yearYear in which the aggregated values are calculated.2022
monthInteger indicator for the month of the year in which the aggregated values are calculated5
hco_npiOrganizational provider, identified via their National Provider Identifier (NPI).1063001238
hco_nameName of the individual provider identified.Higi Care Network
hco_posSetting in which a healthcare service was provided by healthcare providers, insurers, and government agencies to track and bill for healthcare servicesOffice
hco_zipPrimary zip code of the individual provider.87101
hco_statePrimary US State code code of the provider.NM
payorName of the primary payor on each encounter.Centers for Medicare & Medicaid Services (CMS)
payor_channelPayor channel-of-business, line-of-business, or plan type.Medicare
proc_codeProcedure code performed within encounter(s). Designated by a CPT or HCPCS code.99457
proc_descDescription of the procedure performed within the encounter(s).Management using the results of remote vital sign monitoring per calendar month, first 20 minutes
proc_subcategoryProcedural sub-category related to the procedure performed.Eval. and Mgmt. - Special Eval. and Mgmt. Services
proc_categoryProcedural category related to the procedure performed.Evaluation and Management
num_patientsTotal number of patients seen within the aggregation period.25
num_visitsTotal number of visits within the aggregation period.32
num_encountersTotal number of encounters within the aggregation period.41
total_line_chargesSum of line item charges within the aggregation period. Line item charges are directly related to the procedure performed.$5,729.18
total_claim_chargesSum of the claim item charges within the aggregation period. Claim charges include the procedure charge and related facility charges.$9,103.40
total_smart_allowedSum of allowed amount estimates within the aggregation period. Smart Allowed® values are derived from multiple sources to estimate the final adjudicated amount at the line-item level.$3,958.01
mean_line_chargeAverage line item charge at the line itemwithin the aggregation period. Line item charges are directly related to the procedure performed.$139.73
mean_claim_chargeAverage claim item charge at the line item within the aggregation period. Claim charges include the procedure charge and related facility charges.$222.03
mean_smart_allowedAverage allowed amount at the line item within the aggregation period. Smart Allowed® values are derived from multiple sources to estimate the final adjudicated amount at the line-item level.$96.50

Helper Function within the CareQuery API to help understand the underlying ORG_PAYOR_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('ORG_PAYOR_PROC_TABLE'))