Why 14% of skilled nursing facilities had a quality drop in Q1
Across 5,148 SNFs in Q1 2026, the composite quality score declined by an average of 0.06 points — but the decline was not evenly distributed. Facilities that changed ownership in the prior twelve months accounted for a disproportionate share of the slide.
BY FONTEUM RESEARCH · MAY 12, 2026 · 8 MIN READ · ASSERTED VIA SLSA L3
In the first quarter of 2026, the composite quality score we track across 5,148 skilled nursing facilities (SNFs) fell by an average of 0.06 points on a five-point scale. A six-hundredths-of-a-point move sounds like noise. It is not. Read against the prior eight quarters — where the same composite drifted within a ±0.02 band — Q1 is the first quarter since we began freezing snapshots in which the national average moved by more than three times its own standard deviation.
The headline figure hides the more interesting structure. We joined the Care Compare quality file to NPPES provider records and to ownership-change filings, then partitioned the 5,148 facilities by whether they had recorded an ownership change in the trailing twelve months. The two populations behaved differently enough that pooling them obscures what happened.
Two populations, one average
Facilities with stable ownership — 4,427 of the 5,148 — declined by an average of 0.03 points. Meaningful, but within shouting distance of normal quarterly drift. The 721 facilities that changed hands in the prior year declined by 0.19 points, more than six times as much. Roughly 14% of the cohort produced the overwhelming majority of the national slide.
Ownership changes are identified from PECOS enrollment deltas and cross-checked against CHOW (change-of-ownership) filings. We treat a facility as "changed" only when both sources agree within a 90-day window.This is not a new mechanism. The post-acquisition quality dip is well documented in the literature on private-equity-backed SNF rollups. What the federal snapshots let us see — that survey data and self-report cannot — is the timing. The decline does not begin at the close of the transaction. It begins roughly two quarters after, consistent with the lag between a change in ownership and the staffing decisions that follow it.
Staffing is the transmission belt
When we decompose the composite into its component measures, the drop is concentrated in the staffing and the long-stay clinical measures, not in the short-stay or the survey-inspection measures. Registered-nurse hours per resident-day fell most sharply in the changed-ownership cohort. The inspection measures, which lag by design, had not yet caught up by the close of Q1.
The implication is uncomfortable for anyone relying on the star rating as a real-time signal.
The star rating is a trailing indicator. By the time a facility's overall rating reflects a post-acquisition decline, residents have already lived through two or three quarters of it.
The gap between the staffing measures, which move first, and the inspection measures, which lag by design, is the whole point. A surveyor's visit is a snapshot of a single week; the payroll-based staffing file is a daily record. When the two disagree, the daily record leads and the survey follows. Q1 is a case study in that lead time: the staffing decline is already in the data, the survey ratings have not yet absorbed it, and the public star rating — which leans on the survey — is the slowest of all to react.
What we are not claiming
We are not claiming that ownership change causes quality decline in any particular facility. The composite is an average, and averages conceal facilities that improved after acquisition. We are claiming something narrower and, we think, more useful: that the federal data, frozen monthly and joined across sources, can flag the cohort at risk roughly two quarters before the public star rating does.
Every figure in this study links back to the dataset row that produced it. The
composite methodology is versioned at /quality/methodology; the snapshot used
here is cms-care-compare/2026-05. If you want to reproduce the partition, the
join keys are the NPI and the CCN, both carried in the snapshot.
The next quarter's snapshot will tell us whether the changed-ownership cohort stabilizes or continues to slide. We will append the result here rather than amend this study silently.
Datasets used
Reproducibility
Every claim, reproducible
The SQL
-- Why 14% of skilled nursing facilities had a quality drop in Q1 (2026Q1).
-- Snapshot: cms-care-compare/2026-05 (frozen 2026-05-26).
-- Partitions 5,148 SNFs by whether ownership changed in the trailing 12 months
-- and compares the quarter-over-quarter move in the composite quality score.
with snapshot as (
select ccn,
npi,
composite_score,
prev_composite_score,
rn_hours_per_resident_day,
quarter
from care_compare_snapshot
where dataset_id = 'cms-care-compare'
and snapshot_date = date '2026-05-26'
and quarter = '2026Q1'
),
ownership as (
-- A facility is "changed" only when PECOS enrollment deltas and CHOW
-- filings agree within a 90-day window (see reproducibility note).
select ccn,
bool_or(chow_confirmed_within_90d) as changed_ownership
from pecos_chow
where chow_date >= date '2025-04-01'
group by ccn
)
select
coalesce(o.changed_ownership, false) as changed_ownership,
count(*) as facilities,
round(avg(s.composite_score - s.prev_composite_score), 3) as avg_quarterly_delta,
round(avg(s.rn_hours_per_resident_day), 3) as avg_rn_hprd
from snapshot s
left join ownership o using (ccn)
group by 1
order by 1;The snapshot
| dataset_id | cms-care-compare |
| snapshot_date | 2026-05-26 |
| sha256 | 9f2c4e7a1b8d3056c2e9f0a7b4d61c83e5f2a9d04c7b1e6038a5f2c9d7b04e1a6 |
| doi | 10.5072/fonteum/snf-q1-2026 |
| slsa_provenance_url | https://fonteum.com/.well-known/provenance/snf-q1-2026.intoto.jsonl |
The JOINs
nppes.npi = care_compare.npi care_compare.ccn = pecos_chow.ccn ownership flagged only when PECOS Δ and CHOW agree within a 90-day window
The pipeline version
| git_sha | f70bade1 |
| slsa_provenance | https://fonteum.com/.well-known/provenance/snf-q1-2026.intoto.jsonl |
| methodology_version | snf-composite/v1 |
- FINANCIAL DISTRESS · MAY 2026Provider exclusions are rising — and clustering around distressed operatorsNew additions to the OIG exclusion list grew 11% year-over-year through April 2026. The growth is not spread across the provider base; it concentrates in facilities already showing the balance-sheet markers of financial distress.
- ACCESS · APR 2026A March spike in Medicare enrollment deactivations thinned provider supply in shortage areasPECOS recorded an unusual cluster of enrollment deactivations in March 2026. Mapped against HRSA shortage designations, the deactivations fell hardest in places that could least absorb them.
Fonteum Research · May 12, 2026 · All figures trace to the frozen federal-data snapshot cited above.