documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "CDC", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, withdrawn, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CDC_FRDOC_0001-0089 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | World Trade Center Health Program: Petition 012-Atherosclerosis; Finding of Insufficient Evidence | Proposed Rule | 2016-12-14T05:00:00Z | 2016 | 12 | 2016-12-14T05:00:00Z | 2016-12-14T13:37:54Z | 2016-29816 | 0 | 0 | 0900006482407d16 | ||
| CDC-2016-0088-0001 | CDC | Evaluation of Effectiveness of NIOSH Publications: NIOSH Customer Satisfaction and Impact Survey 0920-0544 CDC-2016-0088 | Evaluation of Effectiveness of NIOSH Publications: NIOSH Customer Satisfaction and Impact Survey 2016-21103 | Proposed Rule | 2016-09-02T00:00:00Z | 2016 | 9 | 2016-09-07T19:03:14Z | 0 | 1 | 09000064821c42c5 | ||||
| CDC_FRDOC_0001-0086 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Petitions: World Trade Center Health Program; Petition 013-Autoimmune Disease; Finding of Insufficient Evidence | Proposed Rule | 2016-09-01T04:00:00Z | 2016 | 9 | 2016-09-01T04:00:00Z | 2016-10-04T03:59:59Z | 2016-09-01T11:57:12Z | 2016-21070 | 0 | 0 | 09000064821bd19b | |
| CDC-2016-0072-0001 | CDC | World Trade Center Health Program; Amendments to Definitions, Appeals, and Other Requirements CDC-2016-0072 | World Trade Center Health Program | Proposed Rule | 2016-08-17T04:00:00Z | 2016 | 8 | 2016-08-17T04:00:00Z | 2016-09-17T03:59:59Z | 2016-09-17T01:01:04Z | 2016-18679 | 0 | 0 | 090000648217cda8 | |
| CDC-2016-0068-0001 | CDC | Control of Communicable Diseases CDC-2016-0068 | Control of Communicable Diseases Federal Register, Volume 81 Issue 157 (Monday, August 15, 2016) | Proposed Rule | 2016-08-15T04:00:00Z | 2016 | 8 | 2016-08-15T04:00:00Z | 2016-10-15T03:59:59Z | 2017-02-28T02:00:59Z | 2016-18103 | 0 | 0 | 0900006482174ffe | |
| CDC_FRDOC_0001-0083 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | World Trade Center Health Program: Petition 011 -- Autoimmune Diseases; Finding of Insufficient Evidence | Proposed Rule | 2016-04-25T04:00:00Z | 2016 | 4 | 2016-04-25T04:00:00Z | 2016-04-25T12:20:34Z | 2016-09527 | 0 | 0 | 0900006481f89074 | ||
| CDC_FRDOC_0001-0082 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | World Trade Center Health Program: Peripheral Neuropathy Petition; Finding of Insufficient Evidence | Proposed Rule | 2016-04-04T04:00:00Z | 2016 | 4 | 2016-04-04T04:00:00Z | 2016-04-04T13:07:56Z | 2016-07567 | 0 | 0 | 0900006481f23a62 | ||
| CDC-2015-0006-0024 | CDC | Possession, Use, and Transfer of Select Agents and Toxins: Biennial Review CDC-2015-0006 | Possession, Use, and Transfer of Select Agents and Toxins; Biennial Review of the List of Select Agents and Toxins and Enhanced Biosafety Requirements | Proposed Rule | 2016-01-19T05:00:00Z | 2016 | 1 | 2016-01-19T05:00:00Z | 2016-03-22T03:59:59Z | 2016-03-23T02:00:17Z | 2016-00758 | 0 | 0 | 0900006481e18c10 |
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;