documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "CDC", document_type = "Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2016-0072-0005 | CDC | World Trade Center Health Program; Amendments to Definitions, Appeals, and Other Requirements CDC-2016-0072 | World Trade Center Health Program: Amendments to Definitions, Appeals, and Other Requirements | Rule | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T05:00:00Z | 2017-02-03T20:39:22Z | 2016-29957 | 0 | 0 | 090000648240b0ed | ||
| CDC-2014-0011-0006 | CDC | Specifications for Medical Examinations of Coal Miners CDC-2014-0011 | Specifications for Medical Examinations of Coal Miners | Rule | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-24T04:00:00Z | 2016-10-24T13:30:49Z | 2016-24405 | 0 | 0 | 09000064823433e4 | ||
| CDC-2016-0045-0001 | CDC | Possession, Use, and Transfer of Select Agents and Toxins - Addition of Bacillus cereus Biovar anthracis to the HHS list of Select Agents and Toxins CDC-2016-0045 | Select Agents and Toxins: Bacillus cereus Biovar anthracis | Rule | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T04:00:00Z | 2016-11-15T04:59:59Z | 2016-11-15T14:01:08Z | 2016-22049 | 0 | 0 | 090000648220a109 | |
| CDC-2015-0063-0022 | CDC | World Trade Center Health Program; Addition of New-Onset Chronic Obstructive Pulmonary Disease and Acute Traumatic Injury to the List of WTC-Related Health Conditions CDC-2015-0063 | World Trade Center Health Program: Addition of New-Onset Chronic Obstructive Pulmonary Disease and WTC-Related Acute Traumatic Injury to the List of WTC-Related Health Conditions | Rule | 2016-07-05T04:00:00Z | 2016 | 7 | 2016-07-05T04:00:00Z | 2016-07-05T15:07:36Z | 2016-15799 | 0 | 0 | 0900006482087780 | ||
| CDC_FRDOC_0001-0081 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Medical Examination of Aliens: Medical Screening Process | Rule | 2016-01-26T05:00:00Z | 2016 | 1 | 2016-01-26T05:00:00Z | 2016-01-26T13:34:06Z | 2016-01418 | 0 | 0 | 0900006481e2f6da |
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;