documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "CDC", document_type = "Proposed Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, comment_end_date, fr_doc_num, 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-2012-0016-0002 | CDC | Control of Communicable Diseases: Interstate; Scope and Definitions CDC-2012-0016 | Control of Communicable Diseases: Interstate; Scope and Definitions | Proposed Rule | 2012-12-26T05:00:00Z | 2012 | 12 | 2012-12-26T05:00:00Z | 2013-01-26T04:59:59Z | 2013-01-21T03:11:10Z | 2012-30726 | 0 | 0 | 090000648119a716 | |
| CDC-2012-0017-0001 | CDC | Control of Communicable Diseases: Foreign; Scope and Definitions CDC-2012-0017 | Control of Communicable Diseases: Foreign; Scope and Definitions | Proposed Rule | 2012-12-26T05:00:00Z | 2012 | 12 | 2012-12-26T05:00:00Z | 2013-01-26T04:59:59Z | 2013-01-06T03:01:10Z | 2012-30725 | 0 | 0 | 090000648119a6ce | |
| CDC_FRDOC_0001-0032 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Influenza Viruses Containing Hemagglutinin from Goose/Guangdong/1/96 Lineage | Proposed Rule | 2012-10-17T04:00:00Z | 2012 | 10 | 2012-10-17T04:00:00Z | 2012-12-18T04:59:59Z | 2012-12-18T03:01:41Z | 2012-25377 | 0 | 0 | 09000064811448d4 | |
| CDC-2012-0009-0001 | CDC | Open-Circuit Self-Contained Breathing Apparatus Remaining Service-Life Indicator Performance Requirements CDC-2012-0009 | Open-Circuit Self-Contained Breathing Apparatus Remaining Service-Life Indicator Performance Requirements | Proposed Rule | 2012-06-25T04:00:00Z | 2012 | 6 | 2012-06-25T04:00:00Z | 2012-08-25T03:59:59Z | 2012-09-15T02:00:57Z | 2012-14764 | 0 | 0 | 0900006481063a3d | |
| CDC_FRDOC_0001-0027 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Open-Circuit Self-Contained Breathing Apparatus Remaining Service-Life Indicator Performance Requirements | Proposed Rule | 2012-06-25T04:00:00Z | 2012 | 6 | 2012-06-25T04:00:00Z | 2012-08-25T03:59:59Z | 2012-08-25T02:04:00Z | 2012-14764 | 0 | 0 | 09000064810639c4 | |
| CDC-2012-0007-0008 | CDC | World Trade Center Health Program; Addition of Certain Types of Cancer to the List of WTC-Related Health Conditions. CDC-2012-0007 | World Trade Center Health Program: Addition of Certain Types of Cancer to List of WTC-Related Health Conditions | Proposed Rule | 2012-06-13T04:00:00Z | 2012 | 6 | 2012-06-13T04:00:00Z | 2013-08-11T04:52:20Z | 2012-14203 | 0 | 0 | 090000648104716d | ||
| CDC-2012-0007-0001 | CDC | World Trade Center Health Program; Addition of Certain Types of Cancer to the List of WTC-Related Health Conditions. CDC-2012-0007 | World Trade Center Health Program: Addition of Certain Types of Cancer to List of WTC-Related Health Conditions | Proposed Rule | 2012-06-13T04:00:00Z | 2012 | 6 | 2012-06-13T04:00:00Z | 2012-07-14T03:59:59Z | 2012-07-17T02:01:30Z | 2012-14203 | 0 | 0 | 0900006481046f59 | |
| CDC-2012-0002-0001 | CDC | Establishment of User Fees for Filovirus Testing of Nonhuman Primate Liver Samples CDC-2012-0002 | Establishment of User Fees for Filovirus Testing of Nonhuman Primate Liver Samples | Proposed Rule | 2012-02-10T05:00:00Z | 2012 | 2 | 2012-02-10T05:00:00Z | 2012-04-11T03:59:59Z | 2012-02-10T16:54:29Z | 2012-02841 | 0 | 0 | 0900006480fb2d1f | |
| CDC-2011-0013-0002 | CDC | Specifications for Medical Examinations of Underground Coal Miners CDC-2011-0013 | Specifications for Medical Examinations of Underground Coal Miners | Proposed Rule | 2012-01-09T05:00:00Z | 2012 | 1 | 2012-01-09T05:00:00Z | 2012-03-10T04:59:59Z | 2012-09-13T19:22:58Z | 77 | 0 | 0 | 0900006480f90588 | |
| CDC_FRDOC_0001-0019 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Specifications for Medical Examinations of Underground Coal Miners | Proposed Rule | 2012-01-09T05:00:00Z | 2012 | 1 | 2012-01-09T05:00:00Z | 2012-03-10T04:59:59Z | 2012-01-09T12:50:22Z | 2011-33164 | 0 | 0 | 0900006480f90477 |
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;