documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "CMS_FRDOC_0001" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CMS_FRDOC_0001-4050 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Privacy Act; Matching Program | Notice | 2024-12-23T05:00:00Z | 2024 | 12 | 2024-12-23T05:00:00Z | 2025-01-23T04:59:59Z | 2024-12-28T02:00:58Z | 2024-30522 | 0 | 0 | 0900006486885fd5 | |
| CMS_FRDOC_0001-3988 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Guidance: Inflation Reduction Act Medicare Drug Price Negotiation Program | Notice | 2024-10-10T04:00:00Z | 2024 | 10 | 2024-10-10T04:00:00Z | 2024-10-10T11:37:33Z | 2024-23418 | 0 | 0 | 09000064867c4200 | ||
| CMS_FRDOC_0001-3891 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | 21st Century Cures Act: Establishment of Disincentives for Health Care Providers That Have Committed Information Blocking | Rule | 2024-07-01T04:00:00Z | 2024 | 7 | 2024-07-01T04:00:00Z | 2024-07-01T12:34:29Z | 2024-13793 | 0 | 0 | 09000064865d50fa | ||
| CMS_FRDOC_0001-3882 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Performance Review Board Members | Notice | 2024-06-24T04:00:00Z | 2024 | 6 | 2024-06-24T04:00:00Z | 2024-06-24T12:23:21Z | 2024-13696 | 0 | 0 | 09000064865c5202 | ||
| CMS_FRDOC_0001-3857 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Privacy Act; Matching Program | Notice | 2024-05-23T04:00:00Z | 2024 | 5 | 2024-05-23T04:00:00Z | 2024-06-25T03:59:59Z | 2024-05-23T11:59:56Z | 2024-11351 | 0 | 0 | 090000648657cddb | |
| CMS_FRDOC_0001-3836 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Guidance: Inflation Reduction Act Medicare Drug Price Negotiation Program | Notice | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T04:00:00Z | 2024-07-03T03:59:59Z | 2024-07-04T01:00:52Z | 2024-09750 | 0 | 0 | 0900006486541f72 | |
| CMS_FRDOC_0001-3839 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Nondiscrimination in Health Programs and Activities | Rule | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T04:00:00Z | 2024-05-06T12:30:53Z | 2024-08711 | 0 | 0 | 0900006486542602 | ||
| CMS_FRDOC_0001-3786 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Principles of Reasonable Cost Reimbursement; CFR Correction | Rule | 2024-03-11T04:00:00Z | 2024 | 3 | 2024-03-11T04:00:00Z | 2024-03-11T12:23:16Z | 2024-05210 | 0 | 0 | 09000064864720df |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;