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 = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, 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-0018 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Possession, Use, and Transfer of Select Agents and Toxins; Biennial Review | Proposed Rule | 2011-12-16T05:00:00Z | 2011 | 12 | 2011-12-16T05:00:00Z | 2012-01-18T04:59:59Z | 2011-12-16T14:30:38Z | 2011-32361 | 0 | 0 | 0900006480f8474c | |
| CDC-2011-0007-0001 | CDC | Foreign Quarantine; Etiological Agents, Hosts, and Vectors CDC-2011-0007 | Foreign Quarantines: Etiological Agents, Hosts, and Vectors | Proposed Rule | 2011-10-14T04:00:00Z | 2011 | 10 | 2011-10-14T04:00:00Z | 2011-12-14T04:59:59Z | 2011-10-14T15:05:25Z | 2011-26656 | 0 | 0 | 0900006480f5234c | |
| CDC-2011-0012-0001 | CDC | Possession, Use, and Transfer of Select Agents and Toxins; Biennial Review CDC-2011-0012 | Possession, Use, and Transfer of Select Agents and Toxins; Biennial Review | Proposed Rule | 2011-10-03T04:00:00Z | 2011 | 10 | 2011-10-03T04:00:00Z | 2012-01-14T04:59:59Z | 2011-12-02T20:38:42Z | 2011-25427 | 0 | 0 | 0900006480f4a5f8 | |
| CDC-2011-0010-0001 | CDC | Implementation of World Trade Center Health Program Requirements for the Addition of New WTC-Related Health Conditions CDC-2011-0010 | World Trade Center Health Program Requirements: Addition of New WTC-Related Health Conditions | Proposed Rule | 2011-07-01T04:00:00Z | 2011 | 7 | 2011-07-01T04:00:00Z | 2011-08-31T03:59:59Z | 2014-01-18T17:19:41Z | 2011-16511 | 0 | 0 | 0900006480eb8311 | |
| CDC_FRDOC_0001-0013 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Quality Assurance Requirements for Respirators: Withdrawal | Proposed Rule | 2011-06-08T04:00:00Z | 2011 | 6 | 2011-06-08T04:00:00Z | 2011-07-14T16:04:28Z | 2011-14186 | 0 | 0 | 0900006480e40179 | ||
| CDC-2011-0001-0001 | CDC | Requirements for Importers of Nonhuman Primates CDC-2011-0001 | Requirements for Importers of Nonhuman Primates | Proposed Rule | 2011-04-26T04:00:00Z | 2011 | 4 | 2011-04-26T04:00:00Z | 2011-04-06T03:59:59Z | 2011-06-11T17:03:23Z | 2010-32922 | 0 | 0 | 0900006480c3986c | |
| CDC-2011-0003-0001 | CDC | Guidelines for Determining Probability of Causation under the Energy Employees Occupational Illness Compensation Program Act of 2000; Revision of Guidelines on Non-Radiogenic Cancers CDC-2011-0003 | Revision of Guidelines on Non-Radiogenic Cancers | Proposed Rule | 2011-03-21T04:00:00Z | 2011 | 3 | 2011-03-21T04:00:00Z | 2011-07-21T03:59:59Z | 2014-01-18T17:19:27Z | 2011-06329 | 0 | 0 | 0900006480c0c733 | |
| CDC-2019-0088-0014 | CDC | Coal Workers’ Health Surveillance Program: B Reader Decertification and Autopsy Payment CDC-2019-0088 | Requirements for Importers of Nonhuman Primates | Proposed Rule | 2011-03-10T00:00:00Z | 2011 | 3 | 2022-08-18T12:56:46Z | 0 | 1 | 0900006480c04fde |
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;