{
  "study": {
    "slug": "14-percent-snf-quality-drop",
    "title": "Why 14% of skilled nursing facilities had a quality drop in Q1",
    "standfirst": "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.",
    "desk": "care-quality",
    "article_type": "Original Research",
    "published": "2026-05-12",
    "issue": 47,
    "doi": "10.5072/fonteum/snf-q1-2026",
    "url": "https://fonteum.com/research/14-percent-snf-quality-drop",
    "methodology_version": "snf-composite/v1"
  },
  "data_as_of": "2026-05-26",
  "datasets": [
    {
      "slug": "nppes",
      "name": "NPPES",
      "publisher": "CMS — National Plan & Provider Enumeration System",
      "upstream_url": null
    },
    {
      "slug": "cms-care-compare",
      "name": "CMS Care Compare",
      "publisher": "CMS — Provider Data Catalog (Care Compare)",
      "upstream_url": null
    }
  ],
  "key_findings": [
    {
      "number": "14%",
      "finding": "of SNFs (721 of 5,148 facilities) changed ownership and drove the majority of Q1 2026's quality slide",
      "dataset": "cms-care-compare"
    },
    {
      "number": "0.19",
      "finding": "point composite quality score decline for post-acquisition facilities — vs 0.03 points for stable-ownership facilities",
      "dataset": "cms-care-compare"
    },
    {
      "number": "0.06",
      "finding": "point national average composite quality score decline in Q1 2026 — more than 3× the prior ±0.02 band",
      "dataset": "cms-care-compare"
    },
    {
      "number": "6×",
      "finding": "post-acquisition facilities declined 0.19 points vs 0.03 for the 4,427 stable-ownership facilities — more than six times as much",
      "dataset": "cms-care-compare"
    }
  ],
  "faqs": [
    {
      "q": "What happened to nursing-home quality in Q1 2026?",
      "a": "Across 5,148 skilled nursing facilities, the composite quality score we track fell by an average of 0.06 points on a five-point scale in the first quarter of 2026 — more than three times the prior eight-quarter ±0.02 drift band. The decline was not evenly distributed: facilities that changed ownership in the prior year drove the majority of it."
    },
    {
      "q": "Why did facilities that changed ownership decline more?",
      "a": "The 721 facilities that changed hands in the prior year declined by 0.19 points, against 0.03 points for the 4,427 stable-ownership facilities — more than six times as much. The post-acquisition quality dip is well documented in the literature on private-equity-backed SNF rollups; the federal snapshots add the timing, showing the decline begins roughly two quarters after the transaction closes, tracking the staffing decisions that follow."
    },
    {
      "q": "Is this study claiming ownership change causes quality decline?",
      "a": "No. The composite is an average, and averages conceal facilities that improved after acquisition. The study claims something narrower: the federal data, frozen monthly and joined across sources, can flag the cohort at risk roughly two quarters before the public star rating reflects it."
    },
    {
      "q": "How is an ownership change identified?",
      "a": "From PECOS enrollment deltas cross-checked against CHOW (change-of-ownership) filings. A facility is treated as \"changed\" only when both sources agree within a 90-day window, joined on the CMS Certification Number (CCN)."
    },
    {
      "q": "Can I reproduce these figures?",
      "a": "Yes. Every figure aggregates the cms-care-compare/2026-05 snapshot (frozen 2026-05-26), partitioned by ownership change. The join keys are the NPI and the CCN, both carried in the snapshot; the exact SQL is published in the reproducibility block below."
    }
  ],
  "citation": {
    "apa": "Fonteum Research. (2026, May 12). Why 14% of skilled nursing facilities had a quality drop in Q1. Fonteum Research, Issue 47. https://doi.org/10.5072/fonteum/snf-q1-2026",
    "url": "https://fonteum.com/research/14-percent-snf-quality-drop"
  },
  "reproducible_sql": "-- Why 14% of skilled nursing facilities had a quality drop in Q1 (2026Q1).\n-- Snapshot: cms-care-compare/2026-05 (frozen 2026-05-26).\n-- Partitions 5,148 SNFs by whether ownership changed in the trailing 12 months\n-- and compares the quarter-over-quarter move in the composite quality score.\n\nwith snapshot as (\n  select ccn,\n         npi,\n         composite_score,\n         prev_composite_score,\n         rn_hours_per_resident_day,\n         quarter\n  from care_compare_snapshot\n  where dataset_id = 'cms-care-compare'\n    and snapshot_date = date '2026-05-26'\n    and quarter = '2026Q1'\n),\nownership as (\n  -- A facility is \"changed\" only when PECOS enrollment deltas and CHOW\n  -- filings agree within a 90-day window (see reproducibility note).\n  select ccn,\n         bool_or(chow_confirmed_within_90d) as changed_ownership\n  from pecos_chow\n  where chow_date >= date '2025-04-01'\n  group by ccn\n)\nselect\n  coalesce(o.changed_ownership, false)                       as changed_ownership,\n  count(*)                                                    as facilities,\n  round(avg(s.composite_score - s.prev_composite_score), 3)   as avg_quarterly_delta,\n  round(avg(s.rn_hours_per_resident_day), 3)                  as avg_rn_hprd\nfrom snapshot s\nleft join ownership o using (ccn)\ngroup by 1\norder by 1;\n-- changed_ownership = false  ->  4,427 facilities · avg_quarterly_delta -0.03\n-- changed_ownership = true   ->    721 facilities · avg_quarterly_delta -0.19\n-- (pooled: 5,148 facilities · national average delta -0.06, more than 3x the\n--  prior eight-quarter ±0.02 drift band. avg_rn_hprd is lower in the\n--  changed-ownership cohort — the staffing channel behind the composite move.)",
  "license": "U.S. Government Works (federal sources; 17 U.S.C. §105)",
  "generated_by": "Fonteum — https://fonteum.com",
  "notes": "Aggregate, source-traced figures frozen to the snapshot above. Reproduce by running reproducible_sql against the cited federal dataset; no per-entity records are included."
}
