Back to search

Hierarchical Condition Category

hcc
clinical·Updated Jun 23, 2026

Definition

ISO-11179 Definition

A Hierarchical Condition Category (HCC) is a clinical classification within the CMS-HCC risk adjustment model that groups related ICD-10-CM diagnosis codes into disease categories of similar clinical severity and expected cost. CMS uses HCC risk adjustment to calculate per-member-per-month capitation payments for Medicare Advantage plans, ensuring that plans covering sicker populations receive higher payments that reflect the actual cost of care. Each HCC has an associated coefficient — a numeric weight representing the additional expected cost a member with that condition carries relative to the average Medicare beneficiary — and the sum of all active HCC coefficients for a member forms the disease component of their Risk Adjustment Factor (RAF) score.

HCC coding accuracy directly drives capitation revenue for Medicare Advantage plans. A member whose documented chronic conditions are not captured in HCC-mapped diagnoses will generate a lower RAF score than their true health status warrants, resulting in a payment that understates the actual cost of their care. Conversely, submitting HCC-mapped diagnoses without supporting clinical documentation exposes a plan to RADV (Risk Adjustment Data Validation) audit recoupment from CMS.

Accurate HCC capture requires that every diagnosis be supported by a face-to-face encounter with an acceptable provider type, documented in the medical record, and coded from the current ICD-10-CM to HCC crosswalk for the applicable model version (currently CMS-HCC V28). Healthcare data engineers build HCC risk adjustment pipelines that ingest professional and institutional claims, filter to valid encounter types, map ICD-10-CM diagnosis codes to HCC numbers using the CMS-published crosswalk, apply hierarchy rules that suppress lower-severity HCCs when a more severe condition in the same disease group is present, and sum HCC coefficients to compute total RAF scores. Key data model components include a member-HCC mapping table, a versioned ICD-to-HCC crosswalk reference table, and an HCC hierarchy table.

The pipeline must maintain separate crosswalk versions for V24 and V28 during the three-year phase-in period. Related concepts include the RAF score, CMS-HCC model, RADV audit, Encounter Data Processing System (EDPS), and the diagnosis-to-HCC crosswalk published annually in the CMS Rate Announcement.

Standard Abbreviation

hcc

Category

clinical

Production DDL — FACT_CLINICAL_EVENT

FACT_CLINICAL_EVENT.sql
CREATE OR REPLACE TABLE FACT_CLINICAL_EVENT (
    clin_evt_key  INTEGER        NOT NULL  -- surrogate key,
    mbr_key       INTEGER        NOT NULL  -- FK to DIM_MEMBER,
    prvdr_key     INTEGER        NOT NULL  -- FK to DIM_PROVIDER,
    diag_cd       VARCHAR(10)              -- ICD-10 diagnosis code,
    hcc_cd        VARCHAR(10)              -- HCC category code,
    proc_cd       VARCHAR(10)              -- procedure code,
    svc_dt        DATE                     -- service date,
    pos_cd        VARCHAR(2)               -- place of service,
    raf_scr       DECIMAL(10,3)            -- RAF score,
    admit_dt      DATE                     -- admission date,
    dsch_dt       DATE                     -- discharge date,
    drg_cd        VARCHAR(10)              -- DRG code,
    los_days      SMALLINT                 -- length of stay,
    readmt_ind    CHAR(1)                  -- readmission indicator,
    load_dt       TIMESTAMP_NTZ  NOT NULL  -- load timestamp
);

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

Why This Term Matters

Clinical terms are the building blocks of risk adjustment, quality measurement, and value-based care analytics. A data engineer who understands this terminology can design schemas that correctly capture patient conditions, procedures, and encounters — enabling accurate HCC scoring, HEDIS measure attribution, and CMS reporting. Misclassifying clinical fields in a data warehouse cascades into incorrect RAF scores and failed regulatory submissions.

Looking for more healthcare terms?

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

Browse All Terms