documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CMS-2015-0033" 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), 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-2015-0033-1216 | CMS | Medicare and Medicaid Programs; Electronic Health Record Incentive Program-Stage 3 (CMS-3310-P) CMS-2015-0033 | Medicare and Medicaid Programs: Electronic Health Record Incentive Program Stage 3 and Modifications to Meaningful Use in 2015 through 2017; Corrections and Correcting Amendment | Rule | 2016-06-01T04:00:00Z | 2016 | 6 | 2016-06-01T04:00:00Z | 2016-06-02T14:25:36Z | 2016-12853 | 0 | 0 | 0900006482003ef8 | ||
| CMS-2015-0033-1215 | CMS | Medicare and Medicaid Programs; Electronic Health Record Incentive Program-Stage 3 (CMS-3310-P) CMS-2015-0033 | Medicare andMedicaid Programs: Electronic Health Record Initiative Program Stage 3 and Modifications to Meaningful Use in 2015 through 2017; Corrections and Correcting Amendment | Rule | 2016-03-04T05:00:00Z | 2016 | 3 | 2016-03-04T05:00:00Z | 2016-03-04T15:08:10Z | 2016-04785 | 0 | 0 | 0900006481e9fc14 | ||
| CMS-2015-0033-1217 | CMS | Medicare and Medicaid Programs; Electronic Health Record Incentive Program-Stage 3 (CMS-3310-P) CMS-2015-0033 | Eligibility in the States, District of Columbia, the Northern Mariana Islands, and American Samoa; CFR Correction | Rule | 2016-03-04T05:00:00Z | 2016 | 3 | 2016-03-04T05:00:00Z | 2017-12-11T15:18:19Z | 2016-04872 | 0 | 0 | 0900006481ea0a88 | ||
| CMS-2015-0033-0767 | CMS | Medicare and Medicaid Programs; Electronic Health Record Incentive Program-Stage 3 (CMS-3310-P) CMS-2015-0033 | Medicare and Medicaid Programs: Electronic Health Record Incentive Program -- Stage 3 and Modifications to Meaningful Use in 2015 through 2017 CMS-3310-FC & CMS-3311-FC | Rule | 2015-10-16T04:00:00Z | 2015 | 10 | 2015-10-16T04:00:00Z | 2015-12-16T04:59:59Z | 2016-01-15T22:01:37Z | 2015-25595 | 0 | 0 | 0900006481cd0938 | |
| CMS-2015-0033-0002 | CMS | Medicare and Medicaid Programs; Electronic Health Record Incentive Program-Stage 3 (CMS-3310-P) CMS-2015-0033 | Medicare and Medicaid Programs: Electronic Health Record Incentive Program Stage 3 | Proposed Rule | 2015-03-30T04:00:00Z | 2015 | 3 | 2015-03-30T04:00:00Z | 2015-05-30T03:59:59Z | 2015-06-19T01:30:50Z | 2015-06685 | 0 | 0 | 0900006481a7285c | |
| CMS-2015-0033-0001 | CMS | Medicare and Medicaid Programs; Electronic Health Record Incentive Program-Stage 3 (CMS-3310-P) CMS-2015-0033 | OFR Display version CMS-3310-P | Proposed Rule | 2015-03-25T04:00:00Z | 2015 | 3 | 2015-03-25T04:00:00Z | 2015-04-01T03:59:59Z | 2015-03-31T18:10:56Z | 0 | 0 | 0900006481a62f3c |
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;