documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "CDC-2014-0014" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- CDC 9
| 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-2014-0014-0032 | CDC | National Total Worker Health Agenda CDC-2014-0014 | NIOSH Response to Summarized Stakeholders Comments | Supporting & Related Material | 2016-04-27T04:00:00Z | 2016 | 4 | 2016-04-27T12:42:24Z | 0 | 0 | 0900006481f6de2b | ||||
| CDC-2014-0014-0031 | CDC | National Total Worker Health Agenda CDC-2014-0014 | A National Agenda to Advance Total Worker Health ® Research, Practice, Policy, and Capacity | Supporting & Related Material | 2016-04-27T04:00:00Z | 2016 | 4 | 2016-04-27T12:40:58Z | 0 | 0 | 0900006481f6de29 | ||||
| CDC-2014-0014-0033 | CDC | National Total Worker Health Agenda CDC-2014-0014 | Issuance of Final Guidance Publication | Notice | 2016-04-27T04:00:00Z | 2016 | 4 | 2016-04-27T04:00:00Z | 2016-04-27T12:54:48Z | 2016-09786 | 0 | 0 | 0900006481f916d1 | ||
| CDC-2014-0014-0006 | CDC | National Total Worker Health Agenda CDC-2014-0014 | Transcript_10-7-14_1st townhall mtg | Supporting & Related Material | 2014-11-07T05:00:00Z | 2014 | 11 | 2014-11-07T12:32:00Z | 0 | 0 | 090000648191e24f | ||||
| CDC-2014-0014-0007 | CDC | National Total Worker Health Agenda CDC-2014-0014 | Transcript 10-7-14 2nd townhall mtg | Supporting & Related Material | 2014-11-07T05:00:00Z | 2014 | 11 | 2014-11-07T12:34:37Z | 0 | 0 | 090000648191e250 | ||||
| CDC-2014-0014-0005 | CDC | National Total Worker Health Agenda CDC-2014-0014 | Proposed National Total Worker Health Agenda Town-Hall Meeting Presentation | Supporting & Related Material | 2014-11-07T05:00:00Z | 2014 | 11 | 2014-11-07T12:28:05Z | 0 | 0 | 090000648191e24e | ||||
| CDC-2014-0014-0008 | CDC | National Total Worker Health Agenda CDC-2014-0014 | Transcript 10-9-14 3rd townhall mtg | Supporting & Related Material | 2014-11-07T05:00:00Z | 2014 | 11 | 2014-11-07T12:37:40Z | 0 | 0 | 090000648191e251 | ||||
| CDC-2014-0014-0001 | CDC | National Total Worker Health Agenda CDC-2014-0014 | Proposed National Total Worker Health Agenda | Notice | 2014-09-23T04:00:00Z | 2014 | 9 | 2014-09-23T04:00:00Z | 2014-12-23T04:59:59Z | 2014-12-24T03:00:59Z | 0 | 0 | 09000064818877ef | ||
| CDC-2014-0014-0002 | CDC | National Total Worker Health Agenda CDC-2014-0014 | Draft Proposed National Total Worker Health Agenda | Supporting & Related Material | 2014-09-23T04:00:00Z | 2014 | 9 | 2014-10-09T01:15:33Z | 0 | 0 | 090000648187116a |
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;