Back to search

Current Procedural Terminology

cpt
claims·Updated Jun 23, 2026

Definition

ISO-11179 Definition

Current Procedural Terminology (CPT) is a standardized medical code set maintained by the American Medical Association (AMA) that describes medical, surgical, and diagnostic services rendered by physicians and other healthcare providers in outpatient and office settings. CPT codes are five-character numeric codes organized into three categories: Category I codes describe procedures and services that are widely performed and supported by clinical evidence; Category II codes are optional tracking codes for performance measurement; and Category III codes are temporary codes for emerging technologies and procedures. CMS and private payers require CPT coding on all professional claims (CMS-1500 and 837P transactions) as a condition of reimbursement under HIPAA.

CPT codes are the primary procedure coding system for professional claims analytics, provider performance measurement, network contract management, and utilization management. Every preventive care measure in HEDIS, every prior authorization decision, and every value-based care quality metric that relies on procedure data depends on accurate CPT coding. Modifiers — two-digit alphanumeric codes appended to the CPT code — provide additional context about a service, such as whether it was performed bilaterally, reduced in scope, or repeated by a different physician.

Understanding modifier logic is essential for claims analytics because the same CPT code with different modifiers represents substantially different services and reimbursement amounts. Healthcare data engineers store CPT codes as VARCHAR(5) in claims line tables and maintain CPT reference tables that include code descriptions, global surgery periods, RVU (Relative Value Unit) weights, and payer fee schedule allowables. Common engineering tasks include joining CPT codes to the CMS Physician Fee Schedule for allowed amount benchmarking, mapping CPT codes to HEDIS value sets for quality measure denominator and numerator logic, and detecting unbundling patterns (separately billing component procedures that should be billed as a single code) for fraud and abuse analytics.

The AMA updates the CPT code set annually, requiring versioned reference tables with effective dates. Related code sets include HCPCS Level II codes for supplies and durable medical equipment, ICD-10-PCS for inpatient procedures, and revenue codes for institutional claims.

Standard Abbreviation

cpt

Category

claims

Production DDL — FACT_CLAIM_HEADER

FACT_CLAIM_HEADER.sql
CREATE OR REPLACE TABLE FACT_CLAIM_HEADER (
    clm_key        INTEGER        NOT NULL  -- surrogate key,
    clm_id         VARCHAR(50)    NOT NULL  -- claim identifier,
    mbr_key        INTEGER        NOT NULL  -- FK to DIM_MEMBER,
    prvdr_key      INTEGER        NOT NULL  -- FK to DIM_PROVIDER,
    clm_typ_cd     VARCHAR(10)              -- claim type code,
    clm_stat_cd    VARCHAR(10)              -- claim status code,
    svc_from_dt    DATE                     -- service from date,
    svc_to_dt      DATE                     -- service to date,
    diag_cd_1      VARCHAR(10)              -- principal diagnosis,
    proc_cd        VARCHAR(10)              -- procedure code,
    clm_bill_amt   DECIMAL(18,2)            -- billed amount,
    clm_alwd_amt   DECIMAL(18,2)            -- allowed amount,
    clm_pd_amt     DECIMAL(18,2)            -- paid amount,
    denial_rsn_cd  VARCHAR(10)              -- denial reason code,
    load_dt        TIMESTAMP_NTZ  NOT NULL  -- load timestamp
);

Standard Snowflake DDL for the canonical claims table. Convert to BigQuery or Databricks →

Why This Term Matters

Claims data is the financial backbone of the US healthcare system, and understanding claims terminology is essential for building accurate revenue cycle and reimbursement analytics. Data engineers who know this terminology can correctly parse 837 transactions, identify adjudication errors, and model denial patterns that represent real revenue recovery opportunities. A single misunderstood claims field can result in millions in underpayments identified only after external audits.

Looking for more healthcare terms?

Browse our complete library of 100,000+ standardized healthcare data terms

Browse All Terms