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 = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-3217 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Hearing: Reconsideration of Disapproval South Carolina Medicaid State Plan Amendment | Notice | 2021-12-01T05:00:00Z | 2021 | 12 | 2021-12-01T05:00:00Z | 2021-12-01T13:50:55Z | 2021-26136 | 0 | 0 | 0900006484e8f321 | ||
| CMS_FRDOC_0001-3212 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Medicare Program: CY 2022 Payment Policies under the Physician Fee Schedule and Other Changes to Part B Payment Policies; Medicare Shared Savings Program Requirements; etc. | Rule | 2021-11-19T05:00:00Z | 2021 | 11 | 2021-11-19T05:00:00Z | 2021-11-19T14:29:07Z | 2021-23972 | 0 | 0 | 0900006484e65f96 | ||
| CMS_FRDOC_0001-3200 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Adjustment of Civil Monetary Penalties for Inflation and the Annual Civil Monetary Penalties Inflation Adjustment for 2021 | Rule | 2021-11-15T05:00:00Z | 2021 | 11 | 2021-11-15T05:00:00Z | 2021-11-15T12:56:25Z | 2021-24672 | 0 | 0 | 0900006484e4b8ef | ||
| CMS_FRDOC_0001-3173 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Performance Review Board Membership | Notice | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T04:00:00Z | 2021-09-27T11:58:51Z | 2021-20886 | 0 | 0 | 0900006484daabc6 | ||
| CMS_FRDOC_0001-3140 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Funding Opportunity: Reduction of Issuer Burden Through Technology Grant | Notice | 2021-07-23T04:00:00Z | 2021 | 7 | 2021-07-23T04:00:00Z | 2021-07-23T11:45:12Z | 2021-15656 | 0 | 0 | 0900006484c0a243 | ||
| CMS_FRDOC_0001-3128 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Medicare Program: Comprehensive Care for Joint Replacement Model Three-Year Extension and Changes to Episode Definition and Pricing; Medicare and Medicaid Programs; Policies and Regulatory Revisions in Response to the COVID-19 Public Health Emergency | Rule | 2021-07-09T04:00:00Z | 2021 | 7 | 2021-07-09T04:00:00Z | 2021-07-09T11:53:51Z | C1-2021-09 | 0 | 0 | 0900006484bdf182 | ||
| CMS_FRDOC_0001-3117 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Medicare Program: Hospital Outpatient Prospective Payment and Ambulatory Surgical Center Payment Systems and Quality Reporting Programs; New Categories for Hospital Outpatient Department Prior Authorization Process; Clinical Laboratory Fee Schedule: Laboratory Date of Service Policy; Overall Hospital Quality Star Rating Methodology; Physician-Owned Hospitals | Rule | 2021-06-28T04:00:00Z | 2021 | 6 | 2021-06-28T04:00:00Z | 2021-06-28T11:54:46Z | C1-2020-26 | 0 | 0 | 0900006484bb96e4 | ||
| CMS_FRDOC_0001-3081 | CMS | Recently Posted CMS Rules and Notices. CMS_FRDOC_0001 | Privacy Act; Matching Program | Notice | 2021-05-04T04:00:00Z | 2021 | 5 | 2021-05-04T04:00:00Z | 2021-06-04T03:59:59Z | 2021-05-04T11:46:11Z | 2021-09292 | 0 | 0 | 0900006484aca71b |
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;