documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CMS-2016-0004" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2016-0004-0012 | CMS | CFR Corrections CMS-2016-0004 | Quality improvement organization review; CFR Correction | Rule | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T04:00:00Z | 2016-01-19T20:01:30Z | 2015-20993 | 0 | 0 | 0900006481c36d85 | ||
| CMS-2016-0004-0013 | CMS | CFR Corrections CMS-2016-0004 | Payment for Part B Medical and Other Health Services; CFR Correction | Rule | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T04:00:00Z | 2016-01-19T20:01:32Z | 2015-21003 | 0 | 0 | 0900006481c36e0f | ||
| CMS-2016-0004-0011 | CMS | CFR Corrections CMS-2016-0004 | Conditions of Participation for Hospitals; CFR Correction | Rule | 2015-07-14T04:00:00Z | 2015 | 7 | 2015-07-14T04:00:00Z | 2016-01-19T20:01:29Z | 2015-17127 | 0 | 0 | 0900006481b830d2 | ||
| CMS-2016-0004-0010 | CMS | CFR Corrections CMS-2016-0004 | Acquisition, Protection, and Disclosure of Quality Improvement Organization Information; CFR Correction | Rule | 2015-07-14T04:00:00Z | 2015 | 7 | 2015-07-14T04:00:00Z | 2016-01-19T20:01:27Z | 2015-17128 | 0 | 0 | 0900006481b82ff2 | ||
| CMS-2016-0004-0009 | CMS | CFR Corrections CMS-2016-0004 | Principles of Reasonable Cost Reimbursement; Payment for End-Stage Renal Disease Services; Optional Prospectively Determined Payment Rates for Skilled Nursing Facilities; CFR Correction | Rule | 2015-06-03T04:00:00Z | 2015 | 6 | 2015-06-03T04:00:00Z | 2016-01-19T20:01:25Z | 2015-13434 | 0 | 0 | 0900006481b17b26 | ||
| CMS-2016-0004-0008 | CMS | CFR Corrections CMS-2016-0004 | Eligibility in the States, District of Columbia, the Northern Mariana Islands, and American Samoa; CFR Correction | Rule | 2015-04-23T04:00:00Z | 2015 | 4 | 2015-04-23T04:00:00Z | 2016-01-19T20:01:23Z | 2015-09487 | 0 | 0 | 0900006481ab549c |
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;