documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "CDC", document_type = "Proposed Rule" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, last_modified, 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-2013-0017-0017 | CDC | Development of Inward Leakage Standards for Half-Mask Air-Purifying Particulate Respirators CDC-2013-0017 | Development of Inward Leakage Standards for Half-Mask Air-Purifying Particulate Respirators | Proposed Rule | 2013-11-19T05:00:00Z | 2013 | 11 | 2013-12-20T14:23:46Z | 2013-27445 | 0 | 0 | 09000064814895b1 | |||
| CDC-2013-0017-0011 | CDC | Development of Inward Leakage Standards for Half-Mask Air-Purifying Particulate Respirators CDC-2013-0017 | Development of Inward Leakage Standards for Half-Mask Air-Purifying Particulate Respirators | Proposed Rule | 2013-09-04T04:00:00Z | 2013 | 9 | 2013-09-04T04:00:00Z | 2014-01-01T04:59:59Z | 2014-01-01T02:04:11Z | 2013-21430 | 0 | 0 | 09000064813d927e | |
| CDC-2013-0012-0001 | CDC | World Trade Center Health Program; Addition of Prostate Cancer to the List of WTC-Related Health Conditions CDC-2013-0012 | World Trade Center Health Program: Addition of Prostate Cancer to the List of WTC-Related Health Conditions | Proposed Rule | 2013-07-02T04:00:00Z | 2013 | 7 | 2013-07-02T04:00:00Z | 2013-08-02T03:59:59Z | 2013-08-02T01:02:11Z | 2013-15816 | 0 | 0 | 0900006481351645 | |
| CDC-2013-0004-0001 | CDC | Respirator Certification Fees CDC-2013-0004 | Respirator Certification Fees | Proposed Rule | 2013-03-27T04:00:00Z | 2013 | 3 | 2013-03-27T04:00:00Z | 2013-05-29T03:59:59Z | 2013-05-29T01:01:46Z | 2013-06914 | 0 | 0 | 0900006481247829 | |
| CDC_FRDOC_0001-0045 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Control of Communicable Diseases: Foreign; Scope and Definitions | Proposed Rule | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T05:00:00Z | 2013-02-25T13:55:01Z | 2013-04131 | 0 | 0 | 090000648120691e | ||
| CDC_FRDOC_0001-0044 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Control of Communicable Diseases: Interstate; Scope and Definitions | Proposed Rule | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T05:00:00Z | 2013-02-25T13:55:01Z | 2013-04139 | 0 | 0 | 09000064812068ed | ||
| CDC_FRDOC_0001-0040 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Influenza Viruses Containing the Hemagglutinin From the Goose/Guangdong/1/96 Lineage | Proposed Rule | 2013-02-08T05:00:00Z | 2013 | 2 | 2013-02-08T05:00:00Z | 2013-03-12T03:59:59Z | 2013-02-08T14:28:33Z | 2013-02828 | 0 | 0 | 09000064811ee7ce |
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;