documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "CMS-2016-0003" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0003-0008 | CMS | Quarterly issuances notices (2016 and prior) CMS-2016-0003 | Medicare and Medicaid Programs: Quarterly Listing of Program Issuances: July through September 2015 | Notice | 2015-11-13T05:00:00Z | 2015 | 11 | 2015-11-13T05:00:00Z | 2016-01-19T20:01:53Z | 2015-28870 | 0 | 0 | 0900006481d402f3 | ||
| CMS-2016-0003-0001 | CMS | Quarterly issuances notices (2016 and prior) CMS-2016-0003 | Medicare and Medicaid Programs: Quarterly Listing of Program Issuances | Notice | 2012-11-09T05:00:00Z | 2012 | 11 | 2012-11-09T05:00:00Z | 2016-01-19T20:01:38Z | 2012-27422 | 0 | 0 | 0900006481164231 | ||
| CMS-2016-0003-0003 | CMS | Quarterly issuances notices (2016 and prior) CMS-2016-0003 | Medicare and Medicaid Programs: Quarterly Listing of Program Issuances (January Through March 2010) | Notice | 2010-06-28T04:00:00Z | 2010 | 6 | 2010-06-28T04:00:00Z | 2016-01-19T20:01:42Z | 2010-15257 | 0 | 0 | 0900006480b0ba1d | ||
| CMS-2016-0003-0007 | CMS | Quarterly issuances notices (2016 and prior) CMS-2016-0003 | Medicare and Medicaid Programs: Quarterly Listing of Program Issuances (October Through December 2009) | Notice | 2010-03-26T04:00:00Z | 2010 | 3 | 2010-03-26T04:00:00Z | 2016-01-19T20:01:51Z | 2010-05426 | 0 | 0 | 0900006480ac93a0 | ||
| CMS-2016-0003-0005 | CMS | Quarterly issuances notices (2016 and prior) CMS-2016-0003 | Medicare and Medicaid Programs: Quarterly Listing of Program Issuances (July Through September 2009) | Notice | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T05:00:00Z | 2016-01-19T20:01:46Z | E9-29260 | 0 | 0 | 0900006480a6de3c | ||
| CMS-2016-0003-0002 | CMS | Quarterly issuances notices (2016 and prior) CMS-2016-0003 | Medicare and Medicaid Programs: Quarterly Listing of Program Issuances (January Through March 2009) | Notice | 2009-06-26T04:00:00Z | 2009 | 6 | 2009-06-26T04:00:00Z | 2016-01-19T20:01:40Z | E9-14486 | 0 | 0 | 09000064809e1cde | ||
| CMS-2016-0003-0006 | CMS | Quarterly issuances notices (2016 and prior) CMS-2016-0003 | Medicare and Medicaid Programs: Quarterly Listing of Program Issuances (October - December 2008) | Notice | 2009-03-27T04:00:00Z | 2009 | 3 | 2009-03-27T04:00:00Z | 2016-01-19T20:01:48Z | E9-06148 | 0 | 0 | 0900006480933166 | ||
| CMS-2016-0003-0004 | CMS | Quarterly issuances notices (2016 and prior) CMS-2016-0003 | Medicare and Medicaid Programs: Quarterly Listing of Program Issuances (July Through September 2008) | Notice | 2008-12-30T05:00:00Z | 2008 | 12 | 2008-12-30T05:00:00Z | 2016-01-19T20:01:44Z | E8-30002 | 0 | 0 | 0900006480807a13 |
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;