6.1 Healthcare Data Quality Assessment

Key Takeaways

  • Healthcare data quality is governed by the Six Core Dimensions established by AHIMA and DAMA: Accuracy/Correctness, Completeness, Consistency/Reliability, Timeliness/Punctuality, Validity/Conformance, and Integrity/Uniqueness.
  • Quantitative data quality metrics provide objective benchmarks across clinical pipelines, including Completeness Rates, Value Set Conformance Rates, Duplicate Record Rates, and Referential Integrity Violation Rates.
  • Common healthcare data anomalies include truncated clinical narratives, orphaned foreign key records, chronological inversions (future birth dates, discharge preceding admission), and physiologically impossible vitals (systolic BP > 300 mmHg, body temperature > 115°F).
  • Data profiling encompasses automated column-level profiling (cardinality, null distribution, value frequency), regular expression validation for standard identifiers (NPI, SSN, ICD-10-CM, DEA), and cross-table referential integrity checks.
  • Enterprise data quality scorecards and dashboards translate technical profiling metrics into actionable governance indicators, establishing closed-loop data remediation workflows across clinical and operational domains.
Last updated: August 2026

Healthcare Data Quality Assessment

For a Certified Health Data Analyst (CHDA), data quality assessment represents the first and most critical gatekeeping function in the analytical lifecycle. Healthcare organizations increasingly rely on secondary data—derived from Electronic Health Records (EHRs), Laboratory Information Systems (LIS), Enterprise Master Patient Indices (EMPI), and billing clearinghouses—to drive clinical decision support, value-based purchasing calculations, predictive machine learning models, and regulatory quality reporting (such as CMS MIPS, Hospital Inpatient Quality Reporting [IQR], and NCQA HEDIS). If the underlying data suffer from inaccuracies, incompleteness, or structural anomalies, downstream analytics will produce misleading conclusions that can compromise clinical patient safety, trigger severe regulatory penalties, or cause catastrophic revenue cycle failures.

Data quality management is not a one-time cleaning event; rather, it is a continuous, systematic operational discipline. The American Health Information Management Association (AHIMA) Data Quality Management (DQM) Model defines data quality across four continuous data lifecycle processes:

  1. Data Application: The purpose and business/clinical context for which data are collected.
  2. Data Collection: The operational processes and interfaces through which data elements are captured at the point of care or transaction.
  3. Data Warehousing: The technical storage, integration, archiving, and maintenance architectures that preserve data assets.
  4. Data Analysis: The statistical translation, aggregation, modeling, and reporting of data into actionable health intelligence.

1. The Six Core Dimensions of Healthcare Data Quality

Synthesizing the frameworks established by the AHIMA Data Quality Management Model and the Data Management Association International (DAMA-DMBOK), healthcare data quality is evaluated across six foundational dimensions:

+---------------------------------------------------------------------------------------------------+
|                         THE SIX CORE DIMENSIONS OF HEALTHCARE DATA QUALITY                        |
+-----------------------------------+-----------------------------------+---------------------------+
| 1. ACCURACY / CORRECTNESS         | 2. COMPLETENESS                   | 3. CONSISTENCY / RELIABILITY|
| - True clinical representation    | - Presence of mandatory fields    | - Cross-system harmony    |
| - Verified diagnostic coding      | - Non-null critical attributes    | - Longitudinal stability  |
| - Error-free numeric vitals       | - Complete encounter documentation| - Conflict-free allergy lists|
+-----------------------------------+-----------------------------------+---------------------------+
| 4. TIMELINESS / PUNCTUALITY       | 5. VALIDITY / CONFORMANCE         | 6. INTEGRITY / UNIQUENESS |
| - Low latency from event to record| - Standard value set compliance   | - Zero duplicate entities |
| - Real-time critical lab reporting| - Schema, format, regex match     | - Referential foreign keys|
| - Timely filing for billing claims| - Allowable range conformance     | - Plausible clinical bounds|
+-----------------------------------+-----------------------------------+---------------------------+

1. Accuracy (Correctness)

  • Definition: The degree to which recorded data values correctly reflect the true, objective real-world clinical event, physiological state, or transaction.
  • Healthcare Context: A patient's recorded resting heart rate of 72 bpm accurately reflects their true physiological pulse; an assigned ICD-10-CM diagnosis code of I50.22 (Chronic systolic congestive heart failure) accurately corresponds to the clinical diagnostic findings documented in the attending physician's discharge summary.
  • Risk of Inaccuracy: Inaccurate data leads directly to inappropriate clinical decision support alerts, misdirected patient care pathways, and fraudulent or erroneous billing submissions.

2. Completeness

  • Definition: The proportion of required, expected data elements that are populated with valid, meaningful values relative to the entire population of records.
  • Healthcare Context: In clinical quality reporting for diabetes management, evaluating whether 100% of eligible diabetic patients have documented HbA1c lab values, foot exams, and retinal screenings; in demographic files, ensuring mandatory fields such as Date of Birth, Biological Sex, Race, Ethnicity, and Postal Code contain zero unmapped null or blank values.
  • Risk of Incompleteness: Missing data distorts risk-adjustment algorithms (e.g., CMS-HCC risk scores), leading to artificially lower observed-to-expected mortality ratios or severe underpayment under capitated reimbursement models.

3. Consistency (Reliability)

  • Definition: The absence of contradictions, conflicting values, or discrepancies across disparate information systems, tables, or longitudinal encounters for the exact same patient or entity.
  • Healthcare Context: A patient's documented date of birth is identical across the EHR, LIS, RIS/PACS, and billing systems; a patient's documented allergy list in the ambulatory EHR does not conflict with the active allergy profile in the inpatient Pharmacy Information System (PIS).
  • Risk of Inconsistency: Conflicting medication or allergy profiles can lead to fatal adverse drug events (ADEs) during care transitions between inpatient and outpatient settings.

4. Timeliness (Punctuality & Currency)

  • Definition: The availability of data at the precise point in time when it is required for clinical decision-making, operational execution, or statutory reporting, measured as the latency between event occurrence and data availability.
  • Healthcare Context: Critical laboratory panic values (e.g., Serum Potassium of 6.8 mmol/L) must be transmitted and visible in the EHR within 15 minutes of analyzer verification; electronic claims must be scrubbed and submitted within payer-mandated timely filing windows (e.g., 90 to 365 days post-discharge).
  • Risk of Untimeliness: Delayed diagnostic reporting impairs emergency resuscitation and sepsis bundles, while delayed billing data leads to non-collectible claims and revenue write-offs.

5. Validity (Conformance)

  • Definition: The degree to which data adhere strictly to the established syntax, technical format, allowable value sets, standardized healthcare code sets, and domain rules.
  • Healthcare Context: An ICD-10-CM diagnosis code matches the official CDC/CMS 3-to-7 character alphanumeric structure (e.g., E11.65); a National Provider Identifier (NPI) contains exactly 10 digits and satisfies the Luhn-10 check digit algorithm; a systolic blood pressure reading falls within the valid numeric data type and allowable physiological domain (0 < Systolic BP <= 300 mmHg).
  • Risk of Invalidity: Invalid clinical terminologies fail electronic claim scrubbing rules (causing ANSI 837 claim rejections) and break automated quality measure extraction engines (eCQMs).

6. Integrity (Uniqueness & Referential Fidelity)

  • Definition: The structural coherence of data across relational database architectures, ensuring that every entity is uniquely represented (no redundant duplicates) and that relational constraints between primary and foreign keys are fully satisfied without orphaned child records.
  • Healthcare Context: Every patient is represented by exactly one unique Master Patient Index (MPI) enterprise identifier; every transaction in the Fact_Medication_Administration table references a valid, existing Patient_SK in the Dim_Patient table and a valid Order_SK in the Dim_Order table.
  • Risk of Broken Integrity: Orphaned billing records cannot be mapped to patients, generating unallocated revenue balances; duplicate patient records fragment the longitudinal medical chart, concealing critical past surgical histories or drug allergies.

2. Comprehensive Healthcare Data Quality Dimensions Matrix

The following matrix details the operational definitions, healthcare examples, quantitative measurement formulas, and standard remediation strategies across each quality dimension:

Quality DimensionTechnical DefinitionHealthcare ExampleQuantitative Measurement Metric & FormulaRemediation Strategy
AccuracyCorrespondence between recorded data and ground truth reality.Documenting actual administered medication dose (e.g., 50 mg vs 500 mg).Accuracy Rate = (Verified Accurate Records / Total Audited Sample) * 100%Point-of-care Barcode Medication Administration (BCMA) scanning; dual-nurse sign-off for high-risk infusions.
CompletenessExtent to which all mandatory attributes contain valid values.Capturing self-reported race and ethnicity on 100% of admitted patients.Completeness Rate = (Count of Non-Null Valid Rows / Total Expected Rows) * 100%Enforcing front-end mandatory input fields in EHR registration screens; automated ETL null-rejection rules.
ConsistencyAgreement of data values across multiple systems and timeframes.Identical patient legal name and DOB in EHR registration and Laboratory LIS.Discrepancy Rate = (Count of Conflicting Matched Records / Total Linked Multi-System Records) * 100%Deploying Enterprise Master Person Index (EMPI) engine with automated bi-directional synchronization.
TimelinessAvailability of data within the clinically or operationally required timeframe.Transmission of post-op surgical pathology report within 48 hours of specimen excision.Mean Latency = Sum(Timestamp_Available - Timestamp_Event) / Total Event CountImplementing real-time HL7 FHIR event webhooks and automated escalation alerts for delayed lab verification.
ValidityStrict compliance with data formats, standard code sets, and schemas.Using valid 10-digit NPIs and official CDC/CMS ICD-10-CM codes.Conformance Rate = (Count of Schema-Conformant Values / Total Evaluated Field Values) * 100%Implementing front-end lookup validation tables and regex pattern matching in ETL staging pipelines.
IntegrityReferential validity between relational tables and entity uniqueness.Ensuring every charge line item links to an existing encounter and patient.Orphan Rate = (Count of Unmatched Foreign Key Child Rows / Total Child Table Rows) * 100%Enforcing database-level FOREIGN KEY constraints; executing automated nightly referential reconciliation scripts.

3. Healthcare-Specific Data Quality Metrics and Mathematical Formulas

Health data analysts must establish rigorous mathematical baselines to objectively quantify and track data quality across pipelines. The core formulas utilized in enterprise quality scorecards include:

1. Attribute Completeness Rate (C_R)

Quantifies the proportion of populated, non-null values for a specific field across a target dataset:

CR=(NtotalNnullNblankNtotal)×100%C_R = \left( \frac{N_{\text{total}} - N_{\text{null}} - N_{\text{blank}}}{N_{\text{total}}} \right) \times 100\%

Where $N_{\text{total}}$ is the total number of records evaluated, $N_{\text{null}}$ is the count of database NULL values, and $N_{\text{blank}}$ is the count of whitespace, empty strings (''), or placeholder dummy values (e.g., 'UNKNOWN', '99999', 'N/A').

2. Value Set Conformance Rate (V_R)

Measures the percentage of discrete records that strictly adhere to an approved clinical terminology value set (e.g., LOINC, RxNorm, SNOMED CT, CPT):

VR=(i=1NI(xiSvalid)N)×100%V_R = \left( \frac{\sum_{i=1}^{N} \mathbb{I}(x_i \in \mathbb{S}_{\text{valid}})}{N} \right) \times 100\%

Where $\mathbb{I}(\cdot)$ is an indicator function equal to 1 if the observed value $x_i$ exists within the authoritative reference value set $\mathbb{S}_{\text{valid}}$, and 0 otherwise.

3. Duplicate Entity Rate (D_R)

Measures the prevalence of duplicate identities or repeated transactional records within an enterprise master repository:

DR=(Nduplicate_instancesNtotal_entities)×100%D_R = \left( \frac{N_{\text{duplicate\_instances}}}{N_{\text{total\_entities}}} \right) \times 100\%

In an EMPI environment with 1,000,000 active patient profiles, if 25,000 records represent duplicate medical record numbers (MRNs) for existing individuals, $D_R = (25,000 / 1,000,000) \times 100% = 2.5%$.

4. Referential Integrity Violation Rate (I_R)

Quantifies the proportion of child transactional records that reference non-existent parent primary keys:

IR=(Norphaned_child_recordsNtotal_child_records)×100%I_R = \left( \frac{N_{\text{orphaned\_child\_records}}}{N_{\text{total\_child\_records}}} \right) \times 100\%

5. Ingestion Latency Index (L_T)

Measures the elapsed operational time between clinical event occurrence and data persistence in the analytical repository:

LT=tDW_IngestiontClinical_ExecutionL_T = t_{\text{DW\_Ingestion}} - t_{\text{Clinical\_Execution}}

4. Identifying Healthcare Data Anomalies

Healthcare datasets are notoriously prone to structural, temporal, and clinical domain anomalies resulting from manual entry errors, interface configuration bugs, software migrations, and legacy system incompatibilities.

+---------------------------------------------------------------------------------------------------+
|                               COMMON HEALTHCARE DATA ANOMALIES                                    |
+-------------------+--------------------+--------------------+--------------------+----------------+
| TRUNCATED TEXT    | ORPHANED RECORDS   | TEMPORAL INVERSIONS| CLINICAL BOUNDS    | UNIT MISMATCH  |
| - 255-char cutoff | - Child FK missing | - Future Birth Date| - Systolic BP >300 | - lbs vs kg    |
| - Lost pathology  | - Unlinked charges | - Discharge < Admit| - Temp > 115°F     | - mg/dL vs     |
| - Clipped surgical| - Floating lab test| - Med Admin prior  | - HR > 300 bpm     |   mmol/L       |
|   operative notes |   results          |   to CPOE order    | - BMI > 120        | - Inverted unit|
+-------------------+--------------------+--------------------+--------------------+----------------+

1. Truncated Text & Field Overflows

  • Mechanism: Occurs when clinical narrative text generated in a modern EHR (supporting large text objects) is transmitted across legacy HL7 v2.x interfaces with fixed-width string fields (e.g., ST string data types capped at 255 characters), or when an analytical database column is improperly defined as VARCHAR(50) instead of VARCHAR(MAX) or TEXT.
  • Impact: Critical surgical operative details, pathology margins ("margins clear of invasive carcinoma"), or complex discharge medication tapering instructions are abruptly clipped, resulting in corrupted clinical summaries.

2. Orphaned Records & Foreign Key Mismatches

  • Mechanism: In relational data pipelines, child transactional records are inserted without corresponding parent dimension entities. Examples include:
    • A record in Fact_Lab_Results with patient_id = 90210 where no corresponding record exists in Dim_Patient.
    • An itemized CDM charge line in Fact_Billing_Charges referencing an encounter_id that was deleted or never finalized in the operational ADT table.
  • Impact: Orphaned records cannot be attributed to patients, providers, or clinical units, distorting cost accounting and leading to unallocated balances.

3. Chronological & Temporal Inversions

Temporal integrity dictates that biological and clinical events must follow strict chronological sequences. Common temporal violations include:

  • Future Dates of Birth: Recorded DOB > Current_Date (frequently caused by default calendar selections or typographical century errors, e.g., typing 2035 instead of 1935).
  • Discharge Preceding Admission: Encounter records where Discharge_Timestamp < Admission_Timestamp.
  • Medication Administration Preceding Order: An eMAR administration timestamp recorded prior to the Computerized Provider Order Entry (CPOE) order creation timestamp.
  • Specimen Result Preceding Collection: Laboratory result verification timestamp occurring earlier than the phlebotomy specimen collection timestamp.

4. Impossible and Implausible Clinical Measurements

Health data analysts must distinguish between physiologically impossible measurements (which represent unambiguous data entry or instrumentation errors) and clinically extreme measurements (which represent acute, life-threatening clinical states).

Clinical ParameterStandard Physiological RangeClinically Extreme (Plausible)Physiologically Impossible (Anomaly)Root Cause Analysis
Systolic Blood Pressure90 - 120 mmHg180 - 260 mmHg (Hypertensive Crisis)< 40 mmHg (non-arrest) or > 300 mmHgTransposition of digits (e.g., typing 512 instead of 125); transducer calibration error.
Diastolic Blood Pressure60 - 80 mmHg110 - 140 mmHg> 200 mmHg or >= Systolic BPDiastolic entered into Systolic field; automated cuff motion artifact.
Body Temperature97.0 - 99.0 °F (36.1 - 37.2 °C)104.0 - 107.0 °F (Severe Hyperpyrexia)< 75.0 °F (< 23.9 °C) or > 115.0 °F (> 46.1 °C)Entering Celsius value into Fahrenheit field (e.g., entering 38.5 into °F field = severe hypothermia anomaly).
Heart Rate60 - 100 bpm180 - 240 bpm (Supraventricular Tachycardia)= 0 bpm (in living outpatient) or > 300 bpmTelemetry lead detachment; double-counting electrical artifacts.
Body Mass Index (BMI)18.5 - 24.9 kg/m^250.0 - 80.0 kg/m^2 (Class III Severe Obesity)< 8.0 kg/m^2 or > 120.0 kg/m^2Entering height in inches into centimeters field; adult weight entered in grams.
Pediatric Weight2.5 - 4.5 kg (Neonate)0.5 - 2.0 kg (Very Low Birth Weight)> 50.0 kg (for a 1-day-old infant)Transposing infant weight in grams (e.g., 3,500 g) into pounds field (entered as 3,500 lbs).

5. Data Profiling Methodologies & Techniques

Data profiling is the systematic, automated analysis of source datasets to understand their structure, content, relationships, and data quality rules prior to analytical modeling or warehouse ingestion.

+---------------------------------------------------------------------------------------------------+
|                                 DATA PROFILING TAXONOMY                                           |
+-----------------------------------+-----------------------------------+---------------------------+
| 1. COLUMN-LEVEL PROFILING         | 2. REGEX PATTERN MATCHING         | 3. CROSS-TABLE PROFILING  |
| - Cardinality (Distinct values)   | - NPI (10-digit Luhn check)       | - Foreign Key Referential Check|
| - Null / Blank Frequency          | - SSN (9-digit format rules)      | - Multi-column Dependencies|
| - Min, Max, Mean, Median, StdDev  | - ICD-10-CM / PCS Syntax          | - Conditional Nullability |
| - Value Distribution / Histograms | - DEA Number Checksum             | - Temporal Chronology Audit|
+-----------------------------------+-----------------------------------+---------------------------+

Column-Level Profiling Metrics

  1. Cardinality: The number of unique, distinct values contained within a column. High-cardinality fields include MRN, Encounter_ID, and Social_Security_Number; low-cardinality categorical fields include Biological_Sex, Admission_Type, and Discharge_Disposition.
  2. Nullability and Value Density: Calculating the exact count and percentage of NULL, empty string (''), and default placeholder values (e.g., '999-99-9999', '01/01/1900').
  3. Descriptive Statistical Distributions: Evaluating parametric and non-parametric summary statistics for continuous numeric attributes (Minimum, Maximum, Quartiles, Mean, Median, Standard Deviation, Skewness, Kurtosis) to detect multimodal distributions or heavy-tailed outliers.
  4. Frequency Distributions: Analyzing value frequencies across categorical columns to identify unmapped local codes or legacy synonyms (e.g., identifying that Gender contains 'M', 'F', 'Male', 'Female', '1', '2', and 'U').

Regular Expression (Regex) Validation for Healthcare Identifiers

Health data analysts leverage regular expressions to validate syntax and standard format compliance across core clinical and administrative identifiers:

  • National Provider Identifier (NPI): Standard 10-digit numeric string starting with a 1 or 2, validated via the regex pattern ^[1-2][0-9]{9}$. In addition to regex syntax, an NPI must be validated against the Luhn algorithm with a constant prefix of 80840 (representing the US health identifier prefix under ISO standard 7812).

  • Social Security Number (SSN): Validates 9-digit format excluding prohibited historical prefixes (such as 000, 666, or 900-999) via the regex pattern ^(?!000|666|9\d{2})\d{3}-(?!00)\d{2}-(?!0000)\d{4}$.

  • ICD-10-CM Clinical Diagnosis Codes: Validates the official 3-to-7 character structure (1 alpha character, followed by 2 numeric digits, an optional decimal point, and up to 4 alphanumeric trailing characters) via the regex pattern ^[A-TV-Z][0-9][0-9A-TV-Z](\.[0-9A-TV-Z]{1,4})?$.

  • Drug Enforcement Administration (DEA) Registration Number: Validates the standard 9-character alphanumeric structure (2 letters followed by 7 digits) via the regex pattern ^[A-M|P|R|X][A-Z9][0-9]{7}$. The DEA checksum formula requires: $\text{Digit 7} = ((\text{Digit 1} + \text{Digit 3} + \text{Digit 5}) + 2 \times (\text{Digit 2} + \text{Digit 4} + \text{Digit 6})) \pmod{10}$.

Cross-Table & Dependency Profiling

  • Conditional Mandatory Checks: Evaluating whether the presence of a specific value in Column A mandates a non-null value in Column B. For example, if Discharge_Disposition = '20' (Expired / Deceased), the Date_Of_Death and Discharge_Mortality_Flag must be non-null and valid.
  • Referential Integrity Profiling: Executing full outer joins between transactional foreign keys and dimensional primary keys to identify orphaned record percentages.

Automated Profiling Frameworks

Modern data architectures implement automated profiling test suites using open-source tools such as Great Expectations, dbt (data build tool) test suites, and Apache Griffin. These frameworks allow analysts to define declarative assertions (e.g., expect_column_values_to_be_between, expect_column_values_to_match_regex) that automatically execute against staging tables and halt ETL pipeline execution upon threshold violation.


6. Enterprise Data Quality Scorecards and Dashboards

To bridge the gap between technical data profiling and enterprise governance, health systems deploy multi-tiered Data Quality Scorecards and Dashboards.

+---------------------------------------------------------------------------------------------------+
|                         ENTERPRISE DATA QUALITY GOVERNANCE HIERARCHY                              |
+---------------------------------------------------------------------------------------------------+
  LEVEL 1: EXECUTIVE DASHBOARD
  - Enterprise Data Quality Index (DQI): Overall Health Score (e.g., 96.4%)
  - Regulatory & Quality Compliance Risk Ratings (CMS IQR, HEDIS, Joint Commission)
  ---------------------------------------------------------------------------------------------------
  LEVEL 2: DOMAIN-SPECIFIC QUALITY SCORECARDS
  - Clinical Data Domain (EHR Notes, Vitals, Allergies, Flowsheets)
  - Diagnostic Domain (LIS Laboratory Results, RIS/PACS Reports, LOINC Conformance)
  - Revenue Cycle & Financial Domain (EDI 837 Claims, CDM Completeness, Remittance Mappings)
  - Master Data Domain (EMPI Duplication Rate, NPI Registry Conformance)
  ---------------------------------------------------------------------------------------------------
  LEVEL 3: OPERATIONAL EXCEPTION & REMEDIATION QUEUES
  - Row-Level Exception Worklists for HIM Data Stewards and Interface Engineers
  - Root-Cause Remediation Tracking & Retesting Cycles
+---------------------------------------------------------------------------------------------------+

Composite Data Quality Index (DQI)

Organizations calculate a weighted composite Data Quality Index (DQI) to monitor overall enterprise health:

DQI=j=16wjSj=w1SAccuracy+w2SCompleteness+w3SConsistency+w4STimeliness+w5SValidity+w6SIntegrityDQI = \sum_{j=1}^{6} w_j \cdot S_j = w_1 S_{\text{Accuracy}} + w_2 S_{\text{Completeness}} + w_3 S_{\text{Consistency}} + w_4 S_{\text{Timeliness}} + w_5 S_{\text{Validity}} + w_6 S_{\text{Integrity}}

Where $w_j$ represents the domain-specific business weight assigned to dimension $j$ (such that $\sum w_j = 1.0$) and $S_j$ represents the normalized quality score (0 - 100%) achieved for that dimension.

The Closed-Loop Quality Remediation Life Cycle

  1. Continuous Automated Profiling: Daily ETL ingestion pipelines execute automated data validation assertions.
  2. Scorecard Metric Aggregation: Profiling results are aggregated into dimensional scores and displayed on executive and departmental dashboards.
  3. Exception Threshold Alerting: When a quality metric breaches a defined threshold (e.g., completeness of race/ethnicity falls below 95%), automated alerts route to assigned HIM Data Stewards.
  4. Root Cause Analysis (RCA): Stewards and analysts investigate the root cause—identifying whether the defect originates from clinician workflow changes, front-end registration software updates, interface engine translation scripts, or ETL code errors.
  5. Remediation & Upstream Correction: Remediation is applied at the source system whenever possible, followed by database-level correction scripts.
  6. Verification & Retesting: Regression tests confirm resolution and prevent recurring defects.
Loading diagram...
Healthcare Data Quality Profiling, Scorecarding & Remediation Life Cycle
Test Your Knowledge

A health data analyst is conducting automated column-level profiling on an inpatient encounter table containing 250,000 discharge records. The analysis reveals that 12,500 records have a discharge date preceding the admission date, and 3,100 neonatal patient records list a body weight exceeding 100 pounds. Under the AHIMA and DAMA data quality frameworks, which primary data quality dimensions are violated by these two anomalies?

A
B
C
D
Test Your Knowledge

During a monthly data quality audit of an Enterprise Data Warehouse, an analyst discovers that 4,200 rows in the Fact_Billing_Charges table contain provider ID values that do not exist in the Dim_Provider dimension table. What specific type of data quality anomaly is present, and what is its direct metric classification?

A
B
C
D
Test Your Knowledge

An analyst is validating National Provider Identifiers (NPIs) in a credentialing database before submitting clinical quality measures to CMS. Which regular expression pattern and mathematical validation algorithm must be applied to verify the structural and cryptographic validity of each NPI?

A
B
C
D