> For the complete documentation index, see [llms.txt](https://docs.dataplex-consulting.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset.md).

# CMS Data Feeds Dataset

### About the Dataset

The CMS Data Feeds Dataset is a comprehensive collection of all current and future CMS data feeds available on cms.data.gov. This dataset transforms each feed into a view, aligning all feed file attributes and casting them to appropriate datatypes. The views are automatically updated when new feed files arrive, and the catalog itself is reviewed weekly for new CMS feeds — straightforward ones are added automatically, others get a closer look first.

Need a feed that isn't in the catalog yet? We can add it on demand — reach out and we'll evaluate it for the next release.

As of August 2026, the dataset encompasses 286 feeds and 5,476 feed files.

See the full list of feeds in the [CMS Data Feeds Catalog](/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog.md).

{% hint style="info" %}
**Get Full Access** | [Snowflake Marketplace](https://app.snowflake.com/marketplace/listing/GZT1Z125KDH/dataplex-consulting-data-products-cms-data-feeds-dataset) | [Databricks](https://checkout.dataplex-consulting.com/b/3cIdR2e1J59Sh2w7pWbQY00) | [Databricks Marketplace](https://marketplace.databricks.com/details/7bfc94b8-8c6f-4706-96cd-5da0ba6766eb/Dataplex-Consulting-Data-Products_CMS-Data-Feeds-Dataset) | [Free Trial](https://trial.dataplex-consulting.com)
{% endhint %}

### Dataset Features

* 30 billion records and growing
* 285 feeds, reviewed weekly for new additions — automatic for straightforward feeds, reviewed first for others — plus on request
* 9,583 feed attributes
* 19 years of historical data
* 1.2 TB of data, continuously expanding
* Daily updates to ensure data freshness
* Automatic quality checks and active monitoring
* Designed for seamless ingestion

### Data Quality and Maintenance

Dataplex Consulting & Data Products prioritizes data quality through:

* Automated data quality checks in all pipelines
* Daily monitoring of ingestion and ETL jobs
* Timely updates whenever CMS publishes new data
* Rigorous processes to ensure data integrity and reliability

### Business Applications

Users can leverage this dataset for various purposes, including:

* Enriching or augmenting existing datasets
* Analyzing published feed metrics over time
* Performing segmentation analysis
* Training machine learning models
* Conducting geospatial analysis
* Tracking healthcare trends and performance metrics

### Example Use Cases

* Analyze telehealth adoption trends across different states
* Evaluate the financial performance of home health agencies
* Track Medicare spending patterns by drug or geography
* Assess hospital performance metrics and patient satisfaction scores
* Monitor healthcare-associated infections across facilities

## Which CMS Datasets Are Included

Every public CMS dataset published on catalog.data.gov and data.cms.gov is included, delivered as a ready-to-query view under its own name: 285+ feeds spanning provider directories, hospital quality and performance, outpatient and inpatient utilization, Medicare spending, home health, hospice, nursing home, and dialysis data. When CMS publishes a new dataset, it's picked up in our weekly review — straightforward feeds are added automatically, others get a closer look first.

Looking for a specific dataset (for example *Medicare Outpatient Hospitals - by Provider and Service*)? It is already a queryable view. Browse the full list in the [CMS Data Feeds Catalog](/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog.md).

## A Queryable CMS Database, Not Downloads

Instead of downloading hundreds of CSVs one release at a time, you get one CMS database on Snowflake or Databricks: every feed as a typed SQL view, joinable across datasets, with prior releases preserved for trend analysis. No parsing, no schema drift, no re-stitching files after each CMS refresh.

## CMS Data by Subscription: Always Current

This is a subscription healthcare data feed, not a one-time extract: views refresh as CMS publishes, new feeds are added on an ongoing weekly basis, and ongoing utilization, spending, and quality data keeps flowing without re-downloading anything. Your queries stay the same while the data underneath stays current.

## catalog.data.gov vs. This Product

The free CMS portals are authoritative, and for a single one-off download they are the right choice. This product exists for everything the portals can't do:

|         | catalog.data.gov / data.cms.gov (free)                    | CMS Data Feeds Dataset                |
| ------- | --------------------------------------------------------- | ------------------------------------- |
| Access  | Per-file downloads, one release at a time                 | SQL on Snowflake or Databricks        |
| Schema  | Raw CSVs; column types and layouts shift between releases | Typed, consistent views per feed      |
| Joins   | Manual stitching across files                             | Join any feeds in one warehouse       |
| History | Current release only; old files disappear                 | Prior releases preserved for trending |
| Updates | Re-download after every CMS refresh                       | Views update automatically            |

{% hint style="success" %}
**Ready to access CMS Data Feeds data?**

Questions? [Contact our team](mailto:support@dataplex-consulting.com) for a walkthrough.
{% endhint %}

| Platform       | Action                                                                                                                                                                       |
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Snowflake**  | [Get on Marketplace →](https://app.snowflake.com/marketplace/listing/GZT1Z125KDH/dataplex-consulting-data-products-cms-data-feeds-dataset)                                   |
| **Databricks** | [Subscribe →](https://checkout.dataplex-consulting.com/b/3cIdR2e1J59Sh2w7pWbQY00) \| [Start 14-Day Free Trial →](https://trial.dataplex-consulting.com/?platform=databricks) |

### Data Structure

The dataset consists of three main components:

1. FEEDS: Contains metadata about each CMS data feed
2. FEEDS\_FILES: Stores information about individual files within each feed
3. Feed-specific views: Separate views for each feed (e.g., PatientReported\_Outcomes, Medicare\_Spending)

### Entity Relationship Diagram

![CMS Data Feeds Structure](/files/V4VpkHul0JDMigYqDyQ3)

### Sample Queries

{% tabs %}
{% tab title="Snowflake" %}

#### Get CMS Feeds to Table Mapping

```sql
SELECT title,
       description,
       references[0]::string AS cms_page_documentation,
       view_name AS table_name
FROM dwv.feeds f;
```

#### Find all Feed Views Related to Medicare

```sql
SELECT title, description, view_name
FROM dwv.feeds
WHERE array_contains('Medicare'::variant, keywords) = True;
```

#### Query All 2021 File Records for Medicare Inpatient Hospitals

```sql
SELECT ff.temporal_start,
       ff.temporal_end,
       v.*
FROM dwv.feeds f
JOIN dwv.feeds_files ff ON f.id = ff.feed_id
JOIN dwv.medicare_inpatient_hospitals__by_geography_and_service v ON ff.id = v.file_id
WHERE title = 'Medicare Inpatient Hospitals - by Geography and Service'
  AND year(ff.temporal_start) = 2021;
```

{% endtab %}

{% tab title="Databricks" %}

#### Get CMS Feeds to Table Mapping

```sql
SELECT title,
       description,
       get_json_object(references, '$[0]') AS cms_page_documentation,
       view_name AS table_name
FROM cms_dwv.feeds f;
```

#### Find all Feed Views Related to Medicare

```sql
SELECT title, description, view_name
FROM cms_dwv.feeds
WHERE array_contains(from_json(keywords, 'array<string>'), 'Medicare');
```

#### Query All 2021 File Records for Medicare Inpatient Hospitals

```sql
SELECT ff.temporal_start,
       ff.temporal_end,
       v.*
FROM cms_dwv.feeds f
JOIN cms_dwv.feeds_files ff ON f.id = ff.feed_id
JOIN cms_dwv.medicare_inpatient_hospitals__by_geography_and_service v ON ff.id = v.file_id
WHERE title = 'Medicare Inpatient Hospitals - by Geography and Service'
  AND year(ff.temporal_start) = 2021;
```

{% endtab %}
{% endtabs %}

## 📊 Recent Feed File Updates

*Recent CMS feed file updates (last 30 days)*

| Date      | Feed                                                                                                                                                                                                                                                                                                                                                                                                                   | Data Period             |
| --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- |
| 8/21/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 8/9/2026 to 8/15/2026   |
| 8/21/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 8/9/2026 to 8/15/2026   |
| 8/21/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 8/9/2026 to 8/15/2026   |
| 8/21/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 8/9/2026 to 8/15/2026   |
| 8/21/2026 | [Restructured BETOS Classification System](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/restructured-betos-classification-system)                                                                                                                                                                                                                                   | 1/1/2025 to 12/31/2025  |
| 8/20/2026 | [Opt Out Affidavits](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/opt-out-affidavits)                                                                                                                                                                                                                                                                               | 7/1/2026 to 7/31/2026   |
| 8/20/2026 | [Physician/Supplier Procedure Summary](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/physiciansupplier-procedure-summary)                                                                                                                                                                                                                                            | 1/1/2025 to 12/31/2025  |
| 8/19/2026 | [Hospital All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-all-owners)                                                                                                                                                                                                                                                                             | 8/1/2026 to 8/31/2026   |
| 8/19/2026 | [Home Health Agency All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/home-health-agency-all-owners)                                                                                                                                                                                                                                                         | 7/1/2026 to 9/30/2026   |
| 8/19/2026 | [Hospice All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospice-all-owners)                                                                                                                                                                                                                                                                               | 7/1/2026 to 9/30/2026   |
| 8/19/2026 | [Hospital Change of Ownership](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-change-of-ownership)                                                                                                                                                                                                                                                           | 4/1/2026 to 6/30/2026   |
| 8/19/2026 | [Hospital Change of Ownership - Owner Information](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-change-of-ownership-owner-information)                                                                                                                                                                                                                     | 4/1/2026 to 6/30/2026   |
| 8/19/2026 | [Part D Prescription Drug Coverage - Landscape - All Plan Types](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/part-d-prescription-drug-coverage-landscape-all-plan-types)                                                                                                                                                                                           | 1/1/2024                |
| 8/19/2026 | [Part D Prescription Drug Coverage - Landscape - All Plan Types](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/part-d-prescription-drug-coverage-landscape-all-plan-types)                                                                                                                                                                                           | 1/1/2024                |
| 8/19/2026 | [Physician Fee Schedule National Payment Amount File](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/physician-fee-schedule-national-payment-amount-file)                                                                                                                                                                                                             | 1/1/2020                |
| 8/19/2026 | [Physician Fee Schedule National Payment Amount File](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/physician-fee-schedule-national-payment-amount-file)                                                                                                                                                                                                             | 1/1/2020                |
| 8/19/2026 | [Physician Fee Schedule National Payment Amount File](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/physician-fee-schedule-national-payment-amount-file)                                                                                                                                                                                                             | 1/1/2025                |
| 8/19/2026 | [Physician Fee Schedule National Payment Amount File](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/physician-fee-schedule-national-payment-amount-file)                                                                                                                                                                                                             | 1/1/2020                |
| 8/19/2026 | [Physician Fee Schedule National Payment Amount File](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/physician-fee-schedule-national-payment-amount-file)                                                                                                                                                                                                             | 1/1/2021                |
| 8/19/2026 | [Part D Prescription Drug Coverage - Landscape - All Plan Types](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/part-d-prescription-drug-coverage-landscape-all-plan-types)                                                                                                                                                                                           | 1/1/2024                |
| 8/19/2026 | [Part D Prescription Drug Coverage - Landscape - All Plan Types](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/part-d-prescription-drug-coverage-landscape-all-plan-types)                                                                                                                                                                                           | 1/1/2024                |
| 8/19/2026 | [Part D Prescription Drug Coverage - Landscape - All Plan Types](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/part-d-prescription-drug-coverage-landscape-all-plan-types)                                                                                                                                                                                           | 1/1/2024                |
| 8/19/2026 | [Part D Prescription Drug Coverage - Landscape - All Plan Types](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/part-d-prescription-drug-coverage-landscape-all-plan-types)                                                                                                                                                                                           | 1/1/2024                |
| 8/19/2026 | [Part D Prescription Drug Coverage - Landscape - All Plan Types](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/part-d-prescription-drug-coverage-landscape-all-plan-types)                                                                                                                                                                                           | 1/1/2024                |
| 8/18/2026 | [Innovation Center Model Participants](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/innovation-center-model-participants)                                                                                                                                                                                                                                           | 8/9/2026 to 8/15/2026   |
| 8/18/2026 | [Opioid Treatment Program Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/opioid-treatment-program-providers)                                                                                                                                                                                                                                               | 8/9/2026 to 8/15/2026   |
| 8/18/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 8/9/2026 to 8/15/2026   |
| 8/18/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 8/9/2026 to 8/15/2026   |
| 8/18/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 8/9/2026 to 8/15/2026   |
| 8/18/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 8/9/2026 to 8/15/2026   |
| 8/18/2026 | [Dialysis Facility - State Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/dialysis-facility-state-averages)                                                                                                                                                                                                                                                 | 6/1/2026                |
| 8/17/2026 | [Hospital Enrollments](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-enrollments)                                                                                                                                                                                                                                                                           | 8/1/2026 to 8/31/2026   |
| 8/17/2026 | [Hospital All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-all-owners)                                                                                                                                                                                                                                                                             | 8/1/2026 to 8/31/2026   |
| 8/17/2026 | [Skilled Nursing Facility All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-all-owners)                                                                                                                                                                                                                                             | 8/1/2026 to 8/31/2026   |
| 8/17/2026 | [Skilled Nursing Facility Enrollments](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-enrollments)                                                                                                                                                                                                                                           | 8/1/2026 to 8/31/2026   |
| 8/17/2026 | [Dialysis Facility - State Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/dialysis-facility-state-averages)                                                                                                                                                                                                                                                 | 6/1/2026                |
| 8/15/2026 | [Outpatient and Ambulatory Surgery Consumer Assessment of Healthcare Providers and Systems (OAS CAHPS) survey for ambulatory surgical centers - Facility](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-and-ambulatory-surgery-consumer-assessment-of-healthcare-providers-and-systems-oas-cahps-survey-for-ambulatory-surgical-centers-facility)         | 7/22/2026               |
| 8/15/2026 | [Outpatient and Ambulatory Surgery Consumer Assessment of Healthcare Providers and Systems (OAS CAHPS) survey for hospital outpatient departments - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-and-ambulatory-surgery-consumer-assessment-of-healthcare-providers-and-systems-oas-cahps-survey-for-hospital-outpatient-departments-state)       | 7/22/2026               |
| 8/15/2026 | [Outpatient Imaging Efficiency - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-imaging-efficiency-national)                                                                                                                                                                                                                                     | 7/22/2026               |
| 8/15/2026 | [Patient Survey (PCH - HCAHPS) PPS-Exempt Cancer Hospital - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/patient-survey-pch-hcahps-pps-exempt-cancer-hospital-hospital)                                                                                                                                                                                   | 7/22/2026               |
| 8/15/2026 | [Medicare Spending Per Beneficiary - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-spending-per-beneficiary-state)                                                                                                                                                                                                                                   | 7/22/2026               |
| 8/15/2026 | [Unplanned Hospital Visits - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/unplanned-hospital-visits-national)                                                                                                                                                                                                                                             | 7/22/2026               |
| 8/15/2026 | [Inpatient Psychiatric Facility Quality Measure Data - by State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/inpatient-psychiatric-facility-quality-measure-data-by-state)                                                                                                                                                                                         | 7/22/2026               |
| 8/15/2026 | [Outpatient and Ambulatory Surgery Consumer Assessment of Healthcare Providers and Systems (OAS CAHPS) survey for ambulatory surgical centers - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-and-ambulatory-surgery-consumer-assessment-of-healthcare-providers-and-systems-oas-cahps-survey-for-ambulatory-surgical-centers-state)               | 7/22/2026               |
| 8/15/2026 | [Medicare Spending Per Beneficiary - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-spending-per-beneficiary-national)                                                                                                                                                                                                                             | 7/22/2026               |
| 8/15/2026 | [Unplanned Hospital Visits - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/unplanned-hospital-visits-state)                                                                                                                                                                                                                                                   | 7/22/2026               |
| 8/15/2026 | [Data Updates](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/data-updates)                                                                                                                                                                                                                                                                                           | 7/15/2026               |
| 8/15/2026 | [Patient-Reported Outcomes - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/patient-reported-outcomes-hospital)                                                                                                                                                                                                                                             | 8/5/2026                |
| 8/15/2026 | [Patient survey (HCAHPS) - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/patient-survey-hcahps-hospital)                                                                                                                                                                                                                                                   | 7/22/2026               |
| 8/15/2026 | [Medicare Spending Per Beneficiary - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-spending-per-beneficiary-hospital)                                                                                                                                                                                                                             | 7/22/2026               |
| 8/15/2026 | [Hospital General Information](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-general-information)                                                                                                                                                                                                                                                           | 7/22/2026               |
| 8/15/2026 | [Timely and Effective Care - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/timely-and-effective-care-state)                                                                                                                                                                                                                                                   | 7/22/2026               |
| 8/15/2026 | [Maternal Health - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/maternal-health-hospital)                                                                                                                                                                                                                                                                 | 7/22/2026               |
| 8/15/2026 | [Healthcare Associated Infections - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/healthcare-associated-infections-hospital)                                                                                                                                                                                                                               | 7/22/2026               |
| 8/15/2026 | [Inpatient Psychiatric Facility Quality Measure Data - by Facility](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/inpatient-psychiatric-facility-quality-measure-data-by-facility)                                                                                                                                                                                   | 7/22/2026               |
| 8/15/2026 | [Timely and Effective Care - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/timely-and-effective-care-hospital)                                                                                                                                                                                                                                             | 7/22/2026               |
| 8/15/2026 | [Outpatient Imaging Efficiency - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-imaging-efficiency-hospital)                                                                                                                                                                                                                                     | 7/22/2026               |
| 8/15/2026 | [Complications and Deaths - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/complications-and-deaths-state)                                                                                                                                                                                                                                                     | 7/22/2026               |
| 8/15/2026 | [Complications and Deaths - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/complications-and-deaths-national)                                                                                                                                                                                                                                               | 7/22/2026               |
| 8/15/2026 | [Complications and Deaths - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/complications-and-deaths-hospital)                                                                                                                                                                                                                                               | 7/22/2026               |
| 8/15/2026 | [CMS Medicare PSI-90 and component measures - six-digit estimate dataset](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/cms-medicare-psi-90-and-component-measures-six-digit-estimate-dataset)                                                                                                                                                                       | 7/22/2026               |
| 8/15/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 8/2/2026 to 8/8/2026    |
| 8/15/2026 | [Healthcare Associated Infections - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/healthcare-associated-infections-state)                                                                                                                                                                                                                                     | 7/22/2026               |
| 8/15/2026 | [Outpatient and Ambulatory Surgery Consumer Assessment of Healthcare Providers and Systems (OAS CAHPS) survey for hospital outpatient departments - Facility](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-and-ambulatory-surgery-consumer-assessment-of-healthcare-providers-and-systems-oas-cahps-survey-for-hospital-outpatient-departments-facility) | 7/22/2026               |
| 8/15/2026 | [Facility Affiliation Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/facility-affiliation-data)                                                                                                                                                                                                                                                                 | 7/31/2026               |
| 8/15/2026 | [Palliative Care - PPS-Exempt Cancer Hospital - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/palliative-care-pps-exempt-cancer-hospital-national)                                                                                                                                                                                                         | 7/22/2026               |
| 8/15/2026 | [Inpatient Psychiatric Facility Quality Measure Data - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/inpatient-psychiatric-facility-quality-measure-data-national)                                                                                                                                                                                         | 7/22/2026               |
| 8/15/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 8/2/2026 to 8/8/2026    |
| 8/15/2026 | [Healthcare Associated Infections - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/healthcare-associated-infections-national)                                                                                                                                                                                                                               | 7/22/2026               |
| 8/15/2026 | [Complications and Unplanned Hospital Visits - PPS-Exempt Cancer Hospital - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/complications-and-unplanned-hospital-visits-pps-exempt-cancer-hospital-national)                                                                                                                                                 | 7/22/2026               |
| 8/15/2026 | [Outpatient and Ambulatory Surgery Consumer Assessment of Healthcare Providers and Systems (OAS CAHPS) survey for hospital outpatient departments - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-and-ambulatory-surgery-consumer-assessment-of-healthcare-providers-and-systems-oas-cahps-survey-for-hospital-outpatient-departments-national) | 7/22/2026               |
| 8/15/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 8/2/2026 to 8/8/2026    |
| 8/15/2026 | [Hospital Price Transparency Enforcement Activities and Outcomes](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-price-transparency-enforcement-activities-and-outcomes)                                                                                                                                                                                     | 7/1/2026 to 7/31/2026   |
| 8/15/2026 | [Veterans Health Administration Behavioral Health Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/veterans-health-administration-behavioral-health-data)                                                                                                                                                                                                         | 7/22/2026               |
| 8/15/2026 | [Outpatient Imaging Efficiency - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-imaging-efficiency-state)                                                                                                                                                                                                                                           | 7/22/2026               |
| 8/15/2026 | [Patient Survey (PCH - HCAHPS) PPS-Exempt Cancer Hospital - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/patient-survey-pch-hcahps-pps-exempt-cancer-hospital-state)                                                                                                                                                                                         | 7/22/2026               |
| 8/15/2026 | [Patient survey (HCAHPS) - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/patient-survey-hcahps-national)                                                                                                                                                                                                                                                   | 7/22/2026               |
| 8/15/2026 | [Safety and Healthcare-Associated Infection Measures - PPS-Exempt Cancer Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/safety-and-healthcare-associated-infection-measures-pps-exempt-cancer-hospital)                                                                                                                                                     | 7/22/2026               |
| 8/15/2026 | [Patient survey (HCAHPS) - State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/patient-survey-hcahps-state)                                                                                                                                                                                                                                                         | 7/22/2026               |
| 8/15/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 8/2/2026 to 8/8/2026    |
| 8/15/2026 | [Outpatient and Ambulatory Surgery Consumer Assessment of Healthcare Providers and Systems (OAS CAHPS) survey for ambulatory surgical centers - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/outpatient-and-ambulatory-surgery-consumer-assessment-of-healthcare-providers-and-systems-oas-cahps-survey-for-ambulatory-surgical-centers-national)         | 7/22/2026               |
| 8/15/2026 | [Veterans Health Administration Timely and Effective Care Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/veterans-health-administration-timely-and-effective-care-data)                                                                                                                                                                                         | 7/22/2026               |
| 8/15/2026 | [Timely and Effective Care - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/timely-and-effective-care-national)                                                                                                                                                                                                                                             | 7/22/2026               |
| 8/15/2026 | [Measure Dates](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/measure-dates)                                                                                                                                                                                                                                                                                         | 7/28/2026               |
| 8/15/2026 | [Palliative Care - PPS-Exempt Cancer Hospital - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/palliative-care-pps-exempt-cancer-hospital-hospital)                                                                                                                                                                                                         | 7/22/2026               |
| 8/15/2026 | [Patient Survey (PCH - HCAHPS) PPS-Exempt Cancer Hospital - National](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/patient-survey-pch-hcahps-pps-exempt-cancer-hospital-national)                                                                                                                                                                                   | 7/22/2026               |
| 8/15/2026 | [Veterans Health Administration Provider Level Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/veterans-health-administration-provider-level-data)                                                                                                                                                                                                               | 7/22/2026               |
| 8/15/2026 | [Unplanned Hospital Visits - Hospital](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/unplanned-hospital-visits-hospital)                                                                                                                                                                                                                                             | 7/22/2026               |
| 8/12/2026 | [Provider of Services File - Hospital & Non-Hospital Facilities](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/provider-of-services-file-hospital-non-hospital-facilities)                                                                                                                                                                                           | 4/1/2026 to 6/30/2026   |
| 8/12/2026 | [Provider of Services File - Hospital & Non-Hospital Facilities](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/provider-of-services-file-hospital-non-hospital-facilities)                                                                                                                                                                                           | 1/1/2026 to 3/31/2026   |
| 8/12/2026 | [Provider of Services File - Hospital & Non-Hospital Facilities](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/provider-of-services-file-hospital-non-hospital-facilities)                                                                                                                                                                                           | 7/1/2025 to 9/30/2025   |
| 8/12/2026 | [Provider of Services File - Hospital & Non-Hospital Facilities](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/provider-of-services-file-hospital-non-hospital-facilities)                                                                                                                                                                                           | 10/1/2025 to 12/31/2025 |
| 8/12/2026 | [Provider of Services File - Hospital & Non-Hospital Facilities](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/provider-of-services-file-hospital-non-hospital-facilities)                                                                                                                                                                                           | 4/1/2025 to 6/30/2025   |
| 8/12/2026 | [Nursing Home Chain Performance Measures](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-home-chain-performance-measures)                                                                                                                                                                                                                                     | 7/1/2026 to 7/31/2026   |
| 8/11/2026 | [Home Infusion Therapy Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/home-infusion-therapy-providers)                                                                                                                                                                                                                                                     | 7/26/2026 to 8/8/2026   |
| 8/11/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 8/2/2026 to 8/8/2026    |
| 8/11/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 8/2/2026 to 8/8/2026    |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2021 to 12/31/2021  |
| 8/11/2026 | [Opioid Treatment Program Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/opioid-treatment-program-providers)                                                                                                                                                                                                                                               | 8/2/2026 to 8/8/2026    |
| 8/11/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 8/2/2026 to 8/8/2026    |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2019 to 12/31/2019  |
| 8/11/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 8/2/2026 to 8/8/2026    |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2017 to 12/31/2017  |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2022 to 12/31/2022  |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2024 to 12/31/2024  |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2023 to 12/31/2023  |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2020 to 12/31/2020  |
| 8/11/2026 | [Physician/Supplier Procedure Summary](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/physiciansupplier-procedure-summary)                                                                                                                                                                                                                                            | 1/1/2025 to 12/31/2025  |
| 8/11/2026 | [Part D Prescription Drug Coverage - Landscape - All Plan Types](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/part-d-prescription-drug-coverage-landscape-all-plan-types)                                                                                                                                                                                           | 1/1/2026                |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2018 to 12/31/2018  |
| 8/11/2026 | [Medicare Short-Stay Hospital Discharge Rankings](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-short-stay-hospital-discharge-rankings)                                                                                                                                                                                                                     | 1/1/2025 to 12/31/2025  |
| 8/11/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-post-acute-care-utilization-skilled-nursing-facility-by-geography-provider-and-service)                                                                                                                  | 1/1/2024 to 12/31/2024  |
| 8/11/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-post-acute-care-utilization-inpatient-rehabilitation-facility-by-geography-and-provider)                                                                                                                 | 1/1/2024 to 12/31/2024  |
| 8/11/2026 | [Innovation Center Milestones and Updates](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/innovation-center-milestones-and-updates)                                                                                                                                                                                                                                   | 8/2/2026 to 8/8/2026    |
| 8/11/2026 | [Medicare Post-Acute Care Utilization - Inpatient Rehabilitation Facility by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-post-acute-care-utilization-inpatient-rehabilitation-facility-by-geography-provider-and-service)                                                                                                | 1/1/2024 to 12/31/2024  |
| 8/11/2026 | [Medicare Post-Acute Care Utilization - Long-Term Care Hospital by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-post-acute-care-utilization-long-term-care-hospital-by-geography-and-provider)                                                                                                                                     | 1/1/2024 to 12/31/2024  |
| 8/11/2026 | [Medicare Post-Acute Care Utilization - Hospice by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-post-acute-care-utilization-hospice-by-geography-and-provider)                                                                                                                                                                     | 1/1/2024 to 12/31/2024  |
| 8/11/2026 | [Medicare Post-Acute Care Utilization - Skilled Nursing Facility by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-post-acute-care-utilization-skilled-nursing-facility-by-geography-and-provider)                                                                                                                                   | 1/1/2024 to 12/31/2024  |
| 8/11/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography and Provider](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-post-acute-care-utilization-home-health-agency-by-geography-and-provider)                                                                                                                                               | 1/1/2024 to 12/31/2024  |
| 8/11/2026 | [Medicare Post-Acute Care Utilization - Home Health Agency by Geography, Provider and Service](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-post-acute-care-utilization-home-health-agency-by-geography-provider-and-service)                                                                                                                              | 1/1/2024 to 12/31/2024  |
| 8/10/2026 | [Provider of Services File - Internet Quality Improvement and Evaluation System](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/provider-of-services-file-internet-quality-improvement-and-evaluation-system)                                                                                                                                                         | 4/1/2026 to 6/30/2026   |
| 8/10/2026 | [Innovation Center Model Participants](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/innovation-center-model-participants)                                                                                                                                                                                                                                           | 8/2/2026 to 8/8/2026    |
| 8/10/2026 | [Innovation Center Model Summary Information](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/innovation-center-model-summary-information)                                                                                                                                                                                                                             | 8/1/2026 to 8/31/2026   |
| 8/7/2026  | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 7/26/2026 to 8/1/2026   |
| 8/7/2026  | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 7/26/2026 to 8/1/2026   |
| 8/7/2026  | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 7/26/2026 to 8/1/2026   |
| 8/7/2026  | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 7/26/2026 to 8/1/2026   |
| 8/7/2026  | [Nursing Homes Including Rehab Services - State US Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-state-us-averages)                                                                                                                                                                                                 | 7/1/2026                |
| 8/6/2026  | [Dialysis Facility - State Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/dialysis-facility-state-averages)                                                                                                                                                                                                                                                 | 6/1/2026                |
| 8/6/2026  | [Nursing Homes Including Rehab Services - Provider Information](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-provider-information)                                                                                                                                                                                           | 7/1/2026                |
| 8/5/2026  | [Revalidation Clinic Group Practice Reassignment](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/revalidation-clinic-group-practice-reassignment)                                                                                                                                                                                                                     | 8/1/2026 to 8/31/2026   |
| 8/5/2026  | [Revalidation Due Date List](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/revalidation-due-date-list)                                                                                                                                                                                                                                                               | 8/1/2026 to 8/31/2026   |
| 8/5/2026  | [Revalidation Reassignment List](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/revalidation-reassignment-list)                                                                                                                                                                                                                                                       | 8/1/2026 to 8/31/2026   |
| 8/5/2026  | [Dialysis Facility - State Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/dialysis-facility-state-averages)                                                                                                                                                                                                                                                 | 6/1/2026                |
| 8/4/2026  | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 7/26/2026 to 8/1/2026   |
| 8/4/2026  | [Opioid Treatment Program Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/opioid-treatment-program-providers)                                                                                                                                                                                                                                               | 7/26/2026 to 8/1/2026   |
| 8/4/2026  | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 7/26/2026 to 8/1/2026   |
| 8/4/2026  | [Revoked Medicare Providers and Suppliers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/revoked-medicare-providers-and-suppliers)                                                                                                                                                                                                                                   | 4/1/2026 to 6/30/2026   |
| 8/4/2026  | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 7/26/2026 to 8/1/2026   |
| 8/4/2026  | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 7/26/2026 to 8/1/2026   |
| 8/1/2026  | [Dialysis Facility - State Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/dialysis-facility-state-averages)                                                                                                                                                                                                                                                 | 6/1/2026                |
| 7/31/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 7/19/2026 to 7/25/2026  |
| 7/31/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 7/19/2026 to 7/25/2026  |
| 7/31/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 7/19/2026 to 7/25/2026  |
| 7/31/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 7/19/2026 to 7/25/2026  |
| 7/31/2026 | [Dialysis Facility - State Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/dialysis-facility-state-averages)                                                                                                                                                                                                                                                 | 6/1/2026                |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - geographic\_locator](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-geographic_locator)                                                                                                  | 7/1/2026                |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - pricing](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-pricing)                                                                                                                         | 7/1/2026                |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - basic\_drugs\_formulary](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-basic_drugs_formulary)                                                                                           | 7/1/2026                |
| 7/30/2026 | [Medicare Advantage Geographic Variation - National & State](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-advantage-geographic-variation-national-state)                                                                                                                                                                                                   | 1/1/2023 to 12/31/2023  |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - indication\_based\_coverage](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-indication_based_coverage)                                                                                   | 7/1/2026                |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - insulin\_beneficiary\_cost](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-insulin_beneficiary_cost)                                                                                     | 7/1/2026                |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - plan\_data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-plan_data)                                                                                                                    | 7/1/2026                |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - pharmacy\_network](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-pharmacy_network)                                                                                                      | 7/1/2026                |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - beneficiary\_cost](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-beneficiary_cost)                                                                                                      | 7/1/2026                |
| 7/30/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - plan\_data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-plan_data)                                                                                                                                          | 7/1/2026                |
| 7/30/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - insulin\_beneficiary\_cost](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-insulin_beneficiary_cost)                                                                                                           | 7/1/2026                |
| 7/30/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - basic\_drugs\_formulary](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-basic_drugs_formulary)                                                                                                                 | 7/1/2026                |
| 7/30/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - beneficiary\_cost](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-beneficiary_cost)                                                                                                                            | 7/1/2026                |
| 7/30/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - indication\_based\_coverage](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-indication_based_coverage)                                                                                                         | 7/1/2026                |
| 7/30/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - geographic\_locator](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-geographic_locator)                                                                                                                        | 7/1/2026                |
| 7/30/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - pharmacy\_network](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-pharmacy_network)                                                                                                                            | 7/1/2026                |
| 7/30/2026 | [Monthly Prescription Drug Plan Formulary and Pharmacy Network Information - excluded\_drugs](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/monthly-prescription-drug-plan-formulary-and-pharmacy-network-information-excluded_drugs)                                                                                                                                | 7/1/2026                |
| 7/30/2026 | [Quarterly Prescription Drug Plan Formulary, Pharmacy Network, and Pricing Information - excluded\_drugs](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/quarterly-prescription-drug-plan-formulary-pharmacy-network-and-pricing-information-excluded_drugs)                                                                                                          | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - Data Collection Intervals](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-data-collection-intervals)                                                                                                                                                                                 | 7/1/2026                |
| 7/30/2026 | [Skilled Nursing Facility Quality Reporting Program - Swing Beds](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-quality-reporting-program-swing-beds)                                                                                                                                                                                       | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - Ownership](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-ownership)                                                                                                                                                                                                                 | 7/1/2026                |
| 7/30/2026 | [Skilled Nursing Facility Quality Reporting Program - Provider Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-quality-reporting-program-provider-data)                                                                                                                                                                                 | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - MDS Quality Measures](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-mds-quality-measures)                                                                                                                                                                                           | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - Penalties](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-penalties)                                                                                                                                                                                                                 | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - Fire Safety Deficiencies](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-fire-safety-deficiencies)                                                                                                                                                                                   | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - Survey Summary](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-survey-summary)                                                                                                                                                                                                       | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - Health Deficiencies](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-health-deficiencies)                                                                                                                                                                                             | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - State Inspection Cut Points](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-state-inspection-cut-points)                                                                                                                                                                             | 7/1/2026                |
| 7/30/2026 | [Skilled Nursing Facility Quality Reporting Program - National Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-quality-reporting-program-national-data)                                                                                                                                                                                 | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - Inspection Dates](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-inspection-dates)                                                                                                                                                                                                   | 7/1/2026                |
| 7/30/2026 | [Nursing Homes Including Rehab Services - Medicare Claims Quality Measures](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-medicare-claims-quality-measures)                                                                                                                                                                   | 7/1/2026                |
| 7/29/2026 | [Facility-Level Minimum Data Set Frequency](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/facility-level-minimum-data-set-frequency)                                                                                                                                                                                                                                 | 4/1/2026 to 6/30/2026   |
| 7/29/2026 | [Payroll Based Journal Daily Nurse Staffing](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/payroll-based-journal-daily-nurse-staffing)                                                                                                                                                                                                                               | 1/1/2026 to 3/31/2026   |
| 7/29/2026 | [Payroll Based Journal Daily Non-Nurse Staffing](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/payroll-based-journal-daily-non-nurse-staffing)                                                                                                                                                                                                                       | 1/1/2026 to 3/31/2026   |
| 7/29/2026 | [Long-Term Care Facility Characteristics](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/long-term-care-facility-characteristics)                                                                                                                                                                                                                                     | 4/1/2026 to 6/30/2026   |
| 7/29/2026 | [Payroll Based Journal Employee Detail Nursing Home Staffing](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/payroll-based-journal-employee-detail-nursing-home-staffing)                                                                                                                                                                                             | 1/1/2026 to 3/31/2026   |
| 7/29/2026 | [Skilled Nursing Facility Quality Reporting Program - Swing Beds](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-quality-reporting-program-swing-beds)                                                                                                                                                                                       | 7/1/2026                |
| 7/29/2026 | [Nursing Homes Including Rehab Services - Health Deficiencies](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-health-deficiencies)                                                                                                                                                                                             | 7/1/2026                |
| 7/29/2026 | [Nursing Homes Including Rehab Services - Provider Information](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-provider-information)                                                                                                                                                                                           | 7/1/2026                |
| 7/29/2026 | [Skilled Nursing Facility Quality Reporting Program - Provider Data](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-quality-reporting-program-provider-data)                                                                                                                                                                                 | 7/1/2026                |
| 7/29/2026 | [Nursing Homes Including Rehab Services - Fire Safety Deficiencies](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-fire-safety-deficiencies)                                                                                                                                                                                   | 7/1/2026                |
| 7/29/2026 | [Nursing Homes Including Rehab Services - MDS Quality Measures](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-mds-quality-measures)                                                                                                                                                                                           | 7/1/2026                |
| 7/29/2026 | [Nursing Homes Including Rehab Services - Medicare Claims Quality Measures](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-medicare-claims-quality-measures)                                                                                                                                                                   | 7/1/2026                |
| 7/29/2026 | [Nursing Homes Including Rehab Services - State US Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-state-us-averages)                                                                                                                                                                                                 | 7/1/2026                |
| 7/28/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 7/19/2026 to 7/25/2026  |
| 7/28/2026 | [Home Infusion Therapy Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/home-infusion-therapy-providers)                                                                                                                                                                                                                                                     | 7/12/2026 to 7/25/2026  |
| 7/28/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 7/19/2026 to 7/25/2026  |
| 7/28/2026 | [Opioid Treatment Program Providers](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/opioid-treatment-program-providers)                                                                                                                                                                                                                                               | 7/19/2026 to 7/25/2026  |
| 7/28/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 7/19/2026 to 7/25/2026  |
| 7/28/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 7/19/2026 to 7/25/2026  |
| 7/27/2026 | [Home Health Agency All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/home-health-agency-all-owners)                                                                                                                                                                                                                                                         | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Federally Qualified Health Center Enrollments](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/federally-qualified-health-center-enrollments)                                                                                                                                                                                                                         | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Rural Health Clinic All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/rural-health-clinic-all-owners)                                                                                                                                                                                                                                                       | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Federally Qualified Health Center All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/federally-qualified-health-center-all-owners)                                                                                                                                                                                                                           | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Hospice Enrollments](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospice-enrollments)                                                                                                                                                                                                                                                                             | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Hospice All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospice-all-owners)                                                                                                                                                                                                                                                                               | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Home Health Agency Enrollments](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/home-health-agency-enrollments)                                                                                                                                                                                                                                                       | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Hospital Change of Ownership](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-change-of-ownership)                                                                                                                                                                                                                                                           | 4/1/2026 to 6/30/2026   |
| 7/27/2026 | [Rural Health Clinic Enrollments](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/rural-health-clinic-enrollments)                                                                                                                                                                                                                                                     | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Skilled Nursing Facility Change of Ownership - Owner Information](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-change-of-ownership-owner-information)                                                                                                                                                                                     | 4/1/2026 to 6/30/2026   |
| 7/27/2026 | [Skilled Nursing Facility Enrollments](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-enrollments)                                                                                                                                                                                                                                           | 7/1/2026 to 7/31/2026   |
| 7/27/2026 | [Medicare Fee-For-Service Public Provider Enrollment](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/medicare-fee-for-service-public-provider-enrollment)                                                                                                                                                                                                             | 7/1/2026 to 9/30/2026   |
| 7/27/2026 | [Hospital All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-all-owners)                                                                                                                                                                                                                                                                             | 7/1/2026 to 7/31/2026   |
| 7/27/2026 | [Skilled Nursing Facility Change of Ownership](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-change-of-ownership)                                                                                                                                                                                                                           | 4/1/2026 to 6/30/2026   |
| 7/27/2026 | [Hospital Enrollments](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-enrollments)                                                                                                                                                                                                                                                                           | 7/1/2026 to 7/31/2026   |
| 7/27/2026 | [Hospital Change of Ownership - Owner Information](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/hospital-change-of-ownership-owner-information)                                                                                                                                                                                                                     | 4/1/2026 to 6/30/2026   |
| 7/27/2026 | [Skilled Nursing Facility All Owners](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/skilled-nursing-facility-all-owners)                                                                                                                                                                                                                                             | 7/1/2026 to 7/31/2026   |
| 7/27/2026 | [Nursing Homes Including Rehab Services - Citation Code Lookup](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/nursing-homes-including-rehab-services-citation-code-lookup)                                                                                                                                                                                           | 6/1/2026                |
| 7/27/2026 | [Dialysis Facility - State Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/dialysis-facility-state-averages)                                                                                                                                                                                                                                                 | 6/1/2026                |
| 7/26/2026 | [Dialysis Facility - State Averages](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/dialysis-facility-state-averages)                                                                                                                                                                                                                                                 | 6/1/2026                |
| 7/24/2026 | [Pending Initial Logging and Tracking Non Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-non-physicians)                                                                                                                                                                                                             | 7/12/2026 to 7/18/2026  |
| 7/24/2026 | [Fiscal Intermediary Shared System Attending and Rendering](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/fiscal-intermediary-shared-system-attending-and-rendering)                                                                                                                                                                                                 | 7/12/2026 to 7/18/2026  |
| 7/24/2026 | [Pending Initial Logging and Tracking Physicians](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/pending-initial-logging-and-tracking-physicians)                                                                                                                                                                                                                     | 7/12/2026 to 7/18/2026  |
| 7/24/2026 | [Order and Referring](https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog/order-and-referring)                                                                                                                                                                                                                                                                             | 7/12/2026 to 7/18/2026  |

## 🆕 Recently Added Feeds

### Medicare Short-Stay Hospital Discharge Rankings (Added: August 2026)

**What's in this data**: The Medicare Short-Stay Hospital Discharge Rankings dataset provides ranked information on Medicare-covered inpatient discharges from short-stay (acute care) hospitals by Diagnosis-Related Group (DRG). This data highlights trends in hospital admissions and discharges, helping to understand healthcare utilization patterns associated with various conditions and procedures.

**How you can use it**:

* Analyze trends in Medicare inpatient hospital usage over time by comparing current and prior fiscal year rankings.
* Identify the most common conditions leading to hospital admissions, aiding in resource allocation and healthcare planning.
* Facilitate research on the impact of specific DRGs on patient outcomes and hospital performance metrics.

**Example Queries**:

*This query shows the change in rankings for the top 10 DRGs from the prior fiscal year to the current fiscal year, providing insights into shifts in hospital performance.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT t.drg_number, t.drg_description, t.__current_fy_rank, t.prior_fy_rank
FROM dwv.medicare_shortstay_hospital_discharge_rankings t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
ORDER BY t.__current_fy_rank ASC
LIMIT 10
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT t.drg_number, t.drg_description, t.__current_fy_rank, t.prior_fy_rank
FROM cms_dwv.medicare_shortstay_hospital_discharge_rankings t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
ORDER BY t.__current_fy_rank ASC
LIMIT 10
```

{% endtab %}
{% endtabs %}

*This query shows the average rank change for all DRGs, helping to analyze overall trends in hospital discharge rankings.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT avg(t.__current_fy_rank - t.prior_fy_rank) AS average_rank_change
FROM dwv.medicare_shortstay_hospital_discharge_rankings t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT avg(t.__current_fy_rank - t.prior_fy_rank) AS average_rank_change
FROM cms_dwv.medicare_shortstay_hospital_discharge_rankings t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
```

{% endtab %}
{% endtabs %}

### Long-Term Care Hospital - Provider Data (Added: July 2026)

**What's in this data**: This dataset contains provider-level quality measures for long-term care hospitals as reported by CMS. Each entry corresponds to a unique provider and measure for a specified reporting period, allowing for performance comparison and analysis across various quality metrics.

**How you can use it**:

* Analyze trends in quality measures over time for specific long-term care hospitals.
* Compare performance metrics of different long-term care hospitals within the same state.
* Identify hospitals with the highest and lowest scores on specific quality measures to inform patient choices.

**Example Queries**:

*List all hospitals in a specific state along with their scores for a particular measure in the latest reporting period.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT provider_name, score
FROM dwv.long_term_care_hospital_provider_data t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
  AND state = 'AL'
  AND measure_code = 'L_006_01_DOPC_DAYS'
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT provider_name, score
FROM cms_dwv.long_term_care_hospital_provider_data t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
  AND state = 'AL'
  AND measure_code = 'L_006_01_DOPC_DAYS'
```

{% endtab %}
{% endtabs %}

*Count the number of hospitals in each county along with the maximum score for a specific measure.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT county_parish, count(DISTINCT cms_certification_number_ccn) AS hospital_count,
       max(score) AS max_score
FROM dwv.long_term_care_hospital_provider_data t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY county_parish
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT county_parish, count(DISTINCT cms_certification_number_ccn) AS hospital_count,
       max(score) AS max_score
FROM cms_dwv.long_term_care_hospital_provider_data t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY county_parish
```

{% endtab %}
{% endtabs %}

### Inpatient Rehabilitation Facility - General Information (Added: July 2026)

**What's in this data**: This dataset provides a comprehensive directory of inpatient rehabilitation facilities, including vital details such as facility addresses, ownership types, CMS certification numbers, and contact information. It is essential for stakeholders analyzing healthcare accessibility and facility performance.

**How you can use it**:

* Identifying rehabilitation facilities by geographic location for patient referrals.
* Analyzing ownership types of rehabilitation facilities to assess market trends.
* Tracking certification dates to evaluate compliance and facility upgrades.

**Example Queries**:

*This query retrieves the count of rehabilitation facilities by ownership type in the latest dataset.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT ownership_type, count(*) AS facility_count
FROM dwv.inpatient_rehabilitation_facility_general_information t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY ownership_type
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT ownership_type, count(*) AS facility_count
FROM cms_dwv.inpatient_rehabilitation_facility_general_information t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY ownership_type
```

{% endtab %}
{% endtabs %}

*This query shows the distribution of rehabilitation facilities across different counties in the latest dataset.*

{% tabs %}
{% tab title="Snowflake" %}

```sql
SELECT county_parish, count(*) AS facility_count
FROM dwv.inpatient_rehabilitation_facility_general_information t
JOIN dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY county_parish
```

{% endtab %}

{% tab title="Databricks" %}

```sql
SELECT county_parish, count(*) AS facility_count
FROM cms_dwv.inpatient_rehabilitation_facility_general_information t
JOIN cms_dwv.feeds_files ff ON t.file_id = ff.id
WHERE ff.is_latest = 1
GROUP BY county_parish
```

{% endtab %}
{% endtabs %}

📋 [View the complete CMS Data Feeds Catalog](/data-catalog/cms-data-feeds-dataset/cms-data-feeds-catalog.md)

***

### Frequently Asked Questions

**Is there a subscription service for ongoing healthcare utilization data feeds?** Yes. This dataset delivers CMS utilization, spending, and quality feeds as a subscription on Snowflake or Databricks, refreshed as CMS publishes, with new feeds reviewed and added weekly.

**Is there a database of all CMS datasets?** This product is exactly that: every public CMS dataset from catalog.data.gov and data.cms.gov as a typed, queryable view in one database, with 19 years of history.

**How current is the data?** Feeds update as CMS publishes: checked daily, loaded when new files appear. The [Recent Feed File Updates](#recent-feed-file-updates) section below shows the latest loads.

**Can my AI agent or data pipeline consume this?** Yes: access is plain SQL on Snowflake or Databricks. See the [AI Agent Quickstart](/snowflake-access/ai-agent-quickstart.md) for the exact commands.

## Get Started

{% hint style="success" %}
**CMS Medicare/Medicaid Data Access**

### Choose Your Platform

{% endhint %}

| Platform       | Get Access                                                                                                                                                                                                                                     | Free Trial                                                                              |
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
| **Snowflake**  | [Get on Marketplace →](https://app.snowflake.com/marketplace/listing/GZT1Z125KDH/dataplex-consulting-data-products-cms-data-feeds-dataset)                                                                                                     | Available via Marketplace                                                               |
| **Databricks** | [Subscribe →](https://checkout.dataplex-consulting.com/b/3cIdR2e1J59Sh2w7pWbQY00) or [Marketplace →](https://marketplace.databricks.com/details/7bfc94b8-8c6f-4706-96cd-5da0ba6766eb/Dataplex-Consulting-Data-Products_CMS-Data-Feeds-Dataset) | [Start 14-Day Free Trial →](https://trial.dataplex-consulting.com/?platform=databricks) |

|                  |                                                  |
| ---------------- | ------------------------------------------------ |
| **Includes**     | All 232 feeds, daily updates, full documentation |
| **Support**      | Email support included                           |
| **Cancellation** | Cancel anytime, no long-term commitment          |

### Support and Contact

For questions or assistance with the CMS Data Feeds Dataset, please contact:

Email: <support@dataplex-consulting.com>

The Dataplex Consulting & Data Products team monitors ingestion and ETL jobs daily to ensure quality and timely delivery.

### About Dataplex

Dataplex Consulting & Data Products delivers turnkey, analytics-ready data products that make complex public and commercial data easy to use across modern data platforms. Our data pipelines include automated quality checks and active monitoring to ensure timely, reliable, and well-structured data that is ready for downstream analytics, machine learning, and operational use.

In addition to data products, Dataplex provides data engineering and analytics consulting services to organizations of all sizes. We bring deep, hands-on experience supporting both early-stage companies and large enterprises, helping teams build scalable data platforms, improve data reliability, and become more data-driven.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.dataplex-consulting.com/data-catalog/cms-data-feeds-dataset.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
