Logical Observation Identifiers Names and Codes
loincDefinition
ISO-11179 Definition
Logical Observation Identifiers Names and Codes (LOINC) is a universal coding system maintained by the Regenstrief Institute that provides standardized identifiers for laboratory tests, clinical observations, vital signs, and other health measurements. Each LOINC code is a six-part identifier — an accession number followed by a check digit — that precisely specifies the component being measured, the property measured (e.g., mass concentration, presence/absence), the measurement timing, the type of system or sample, the scale of measurement (quantitative, ordinal, narrative), and the method of measurement where relevant. The LOINC database contains over 100,000 terms covering clinical laboratory tests, clinical observations, survey instruments, and attachments.
LOINC is the primary standard for normalizing laboratory and clinical observation data across different EHR systems, laboratory information systems (LIS), and health information exchanges (HIE). Without LOINC standardization, a hemoglobin A1c result from an Epic system, a Cerner system, and a Quest Diagnostics lab will have three different local codes with three different descriptions, making cross-system population analytics impossible. ONC's Promoting Interoperability program and HL7 FHIR US Core profiles both mandate LOINC coding for laboratory observations, driving adoption across virtually all major EHR and LIS platforms.
HEDIS hybrid measures that incorporate lab results require LOINC-coded observations for valid data submission. Healthcare data engineers use LOINC to normalize laboratory result data across source systems when building population health analytics, HEDIS measure calculation pipelines, and clinical quality dashboards. The standard ingestion pattern is to map local lab test codes to LOINC codes using a crosswalk table maintained in the data platform, then store the LOINC code alongside the result value, units, and reference range in the lab results fact table.
FHIR Observation resources reference LOINC codes in the code.coding array, requiring JSON parsing and LOINC lookup during ingestion from FHIR APIs. Common LOINC examples include 4548-4 for hemoglobin A1c, 2160-0 for serum creatinine, 8480-6 for systolic blood pressure, and 55284-4 for blood pressure panel. Related standards include SNOMED CT for coding observation interpretations, UCUM for standardizing measurement units, and HL7 FHIR Observation resource profiles.
Standard Abbreviation
loinc
Category
Production DDL — FACT_CLINICAL_EVENT
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.
Related Content
Related Definitions
Looking for more healthcare terms?
Browse our complete library of 100,000+ standardized healthcare data terms
Browse All Terms