documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "CDC_FRDOC_0001" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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_FRDOC_0001-0053 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Distribution of Reference Biological Standards and Biological Preparations | Rule | 2013-09-18T04:00:00Z | 2013 | 9 | 2013-09-18T04:00:00Z | 2013-09-18T12:10:31Z | 2013-22685 | 0 | 0 | 0900006481429c61 | ||
| CDC_FRDOC_0001-0049 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | World Trade Center Health Program: Certification of Breast Cancer in WTC Responders and Survivors Exposed to PCBs | Rule | 2013-04-17T04:00:00Z | 2013 | 4 | 2013-04-17T04:00:00Z | 2013-04-17T14:45:51Z | 2013-09003 | 0 | 0 | 0900006481297ce4 | ||
| 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-0046 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Control of Communicable Diseases: Interstate; Scope and Definitions | Rule | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T05:00:00Z | 2013-02-25T13:55:08Z | 2013-04137 | 0 | 0 | 0900006481206a0e | ||
| 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-0043 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Control of Communicable Diseases: Foreign; Scope and Definitions | Rule | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T05:00:00Z | 2013-02-25T13:55:07Z | 2013-04136 | 0 | 0 | 090000648120676d | ||
| CDC_FRDOC_0001-0042 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Control of Communicable Disease: Foreign - Requirements for Importers of Nonhuman Primates | Rule | 2013-02-15T05:00:00Z | 2013 | 2 | 2013-02-15T05:00:00Z | 2013-02-15T13:54:07Z | 2013-03064 | 0 | 0 | 09000064811fa3b0 | ||
| CDC_FRDOC_0001-0041 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | User Fees for Filovirus Testing of Nonhuman Primate Liver Samples | Rule | 2013-02-12T05:00:00Z | 2013 | 2 | 2013-02-12T05:00:00Z | 2013-02-12T13:58:28Z | 2013-02825 | 0 | 0 | 09000064811f4d4c | ||
| 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 | |
| CDC_FRDOC_0001-0039 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Foreign Quarantine: Import Regulations for Infectious Biological Agents, Infectious Substances, and Vectors | Rule | 2013-02-04T05:00:00Z | 2013 | 2 | 2013-02-04T05:00:00Z | 2013-02-04T14:15:13Z | 2013-02391 | 0 | 0 | 09000064811e507b |
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;