Back to search

Systematized Nomenclature of Medicine -- Clinical Terms

SNOMED CT
clinical·Updated Jun 23, 2026

Definition

ISO-11179 Definition

Systematized Nomenclature of Medicine Clinical Terms (SNOMED CT) is the world's most comprehensive multilingual clinical healthcare terminology, maintained by SNOMED International and licensed through national release centers. SNOMED CT contains over 350,000 active concepts organized into a formal ontology with hierarchical relationships and logical definitions, covering clinical findings, procedures, body structures, organisms, substances, pharmaceutical products, and observable entities. Each concept has a unique numeric identifier (SCTID), a fully specified name, preferred terms, and synonyms, along with formal logical relationships to related concepts (e.g., "type of," "finding site," "associated morphology").

The hierarchical structure allows clinical queries to be written at any level of specificity — querying for "diabetes mellitus" automatically includes all subtypes. SNOMED CT is the preferred clinical terminology for EHR systems, clinical decision support, and health information exchange applications where semantic precision matters. HL7 FHIR US Core profiles require SNOMED CT coding for conditions, procedures, and clinical findings in FHIR resources.

ONC's Interoperability Standards Advisory and the 21st Century Cures Act both identify SNOMED CT as a required standard for clinical interoperability. Unlike ICD-10, which is designed primarily for billing classification, SNOMED CT captures the full clinical meaning of a diagnosis including anatomical site, severity, laterality, and morphology — making it superior for clinical decision support and population health analytics. Healthcare data engineers encounter SNOMED CT primarily when ingesting FHIR Condition and Procedure resources from EHR APIs, processing HL7 v2 clinical messages, and building clinical terminology normalization pipelines.

SNOMED CT codes appear in the coding array of FHIR resources alongside ICD-10 codes, requiring the ingestion pipeline to extract and store both. Because SNOMED CT's hierarchy enables querying at multiple levels of specificity, engineers build value set expansion logic that resolves concept hierarchies using the SNOMED CT transitive closure table — a pre-computed table of all ancestor-descendant relationships used to efficiently query "all concepts that are a type of X." The SNOMED CT release file structure (RF2 format) includes Concept, Description, Relationship, and Reference Set files, all of which must be loaded into a terminology service or reference database to support concept lookup and hierarchy traversal.

Standard Abbreviation

SNOMED CT

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