documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "CDC-2015-0026" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_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-2015-0026-0013 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | World Trade Center Health Program Scientific/Technical Advisory Committee (STAC) Meeting June 4, 2015 Transcript | Supporting & Related Material | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T16:34:18Z | 0 | 0 | 0900006481b64ae9 | ||||
| CDC-2015-0026-0008 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Dori Reissman (NIOSH) - Presentation | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:14:06Z | 0 | 0 | 0900006481b28520 | ||||
| CDC-2015-0026-0006 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Presentation - Questions for Deliberation | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:13:55Z | 0 | 0 | 0900006481b2851e | ||||
| CDC-2015-0026-0004 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Revised Meeting Agenda | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:13:23Z | 0 | 0 | 0900006481b2851c | ||||
| CDC-2015-0026-0010 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Farfel_Brackbill (NYC DOHMH)-Presentation | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:14:17Z | 0 | 0 | 0900006481b29395 | ||||
| CDC-2015-0026-0012 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Levy-Carrick (NYU)-Presentation | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:14:26Z | 0 | 0 | 0900006481b29397 | ||||
| CDC-2015-0026-0007 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Registration Sheet | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:14:01Z | 0 | 0 | 0900006481b2851f | ||||
| CDC-2015-0026-0011 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Kubale_Robison (NIOSH)-Presentation | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:14:22Z | 0 | 0 | 0900006481b29396 | ||||
| CDC-2015-0026-0009 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Bilics_Breyer (NIOSH)-Presentation | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:14:13Z | 0 | 0 | 0900006481b29394 | ||||
| CDC-2015-0026-0005 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Adobe Connect Attendees List | Supporting & Related Material | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T13:13:47Z | 0 | 0 | 0900006481b2851d | ||||
| CDC-2015-0026-0002 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Meeting Agenda | Supporting & Related Material | 2015-05-27T04:00:00Z | 2015 | 5 | 2015-05-27T13:23:42Z | 0 | 0 | 0900006481b04bc8 | ||||
| CDC-2015-0026-0003 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | Questions for Deliberation | Supporting & Related Material | 2015-05-27T04:00:00Z | 2015 | 5 | 2015-05-27T13:24:28Z | 0 | 0 | 0900006481b04bc9 | ||||
| CDC-2015-0026-0001 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee Meeting CDC-2015-0026 | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) | Notice | 2015-05-05T04:00:00Z | 2015 | 5 | 2015-05-05T04:00:00Z | 2015-05-05T12:42:32Z | 0 | 0 | 0900006481accaac |
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;