documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "CDC-2015-0090" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- CDC 10
| 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-0090-0011 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Attendees list for the World Trade Center Health Program Scientific/Technical Advisory Committee meeting held December 1, 2015 | Supporting & Related Material | 2016-03-21T04:00:00Z | 2016 | 3 | 2016-03-21T19:34:24Z | 0 | 0 | 0900006481ed4345 | ||||
| CDC-2015-0090-0010 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Meeting transcript | Supporting & Related Material | 2016-01-06T05:00:00Z | 2016 | 1 | 2016-01-06T19:13:01Z | 0 | 0 | 0900006481def288 | ||||
| CDC-2015-0090-0009 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Widowed Mothers, Infants, and Young Children of September 11, 2001: Prevention and Research | Supporting & Related Material | 2015-12-10T05:00:00Z | 2015 | 12 | 2015-12-10T14:56:51Z | 0 | 0 | 0900006481d9a075 | ||||
| CDC-2015-0090-0005 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | WTC Children's Research - Opportunities and Challenges | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-08T16:37:33Z | 0 | 0 | 0900006481d8e650 | ||||
| CDC-2015-0090-0008 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Asthma in New York's Chinatown After 9/11 | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-08T18:20:23Z | 0 | 0 | 0900006481d8e467 | ||||
| CDC-2015-0090-0004 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Overview of WTC Mental Health Research and Perspectives on the Charge | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-08T16:23:11Z | 0 | 0 | 0900006481d8e0c9 | ||||
| CDC-2015-0090-0006 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Overview of Children's Research at the WTC Health Registry and Perspective on Charge to STAC | Supporting & Related Material | 2015-12-08T05:00:00Z | 2015 | 12 | 2015-12-08T17:03:12Z | 0 | 0 | 0900006481d8e7bf | ||||
| CDC-2015-0090-0007 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Widowed Mothers, Infants, and Young Children of September 11, 2001: Prevention and Research | Supporting & Related Material | 2015-12-08T00:00:00Z | 2015 | 12 | 2015-12-10T14:05:27Z | 0 | 1 | 0900006481d8e960 | ||||
| CDC-2015-0090-0002 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Agenda for the World Trade Center Health Program Scientific/Technical Advisory Committee - December 1, 2015 Meeting | Supporting & Related Material | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T17:08:53Z | 0 | 0 | 0900006481d5f15d | ||||
| CDC-2015-0090-0001 | CDC | World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) CDC-2015-0090 | Meeting: World Trade Center Health Program Scientific/Technical Advisory Committee (WTCHP STAC or Advisory Committee), National Institute for Occupational Safety and Health (NIOSH) | Notice | 2015-10-21T04:00:00Z | 2015 | 10 | 2015-10-21T04:00:00Z | 2015-11-28T04:59:59Z | 2015-12-03T16:08:04Z | 2015-26759 | 0 | 0 | 0900006481cdc1aa |
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;