documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-ORD-2013-0430" and posted_year = 2013 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)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-HQ-ORD-2013-0430-0011 | EPA | None EPA-HQ-ORD-2013-0430 | Ted Simon's General Comments Presentation for the IRIS Bimonthly Meeting, December 2013 | Supporting & Related Material | Meeting Materials | 2013-12-31T05:00:00Z | 2013 | 12 | 2013-12-31T16:13:37Z | 0 | 0 | 09000064814ca1db | |||
| EPA-HQ-ORD-2013-0430-0008 | EPA | None EPA-HQ-ORD-2013-0430 | R. Becker's General Comments Presentation, December 13, 2013 | Supporting & Related Material | Meeting Materials | 2013-12-31T05:00:00Z | 2013 | 12 | 2013-12-31T16:13:23Z | 0 | 0 | 09000064814ca1af | |||
| EPA-HQ-ORD-2013-0430-0005 | EPA | None EPA-HQ-ORD-2013-0430 | Louis D'Amico's RDX Presentation for the IRIS Assessment, December 12, 2013 | Supporting & Related Material | Meeting Materials | 2013-12-31T05:00:00Z | 2013 | 12 | 2013-12-31T16:12:54Z | 0 | 0 | 09000064814c3143 | |||
| EPA-HQ-ORD-2013-0430-0012 | EPA | None EPA-HQ-ORD-2013-0430 | Robert Fensterheim's Draft General Comments IRIS Presentation at the December Bi-Monthly Meeting, December 13, 2013 | Supporting & Related Material | Meeting Materials | 2013-12-31T05:00:00Z | 2013 | 12 | 2013-12-31T16:13:50Z | 0 | 0 | 09000064814ca1de | |||
| EPA-HQ-ORD-2013-0430-0010 | EPA | None EPA-HQ-ORD-2013-0430 | Chuck Elkins's General Comments Presentation for the IRIS December Bi-Monthly Meeting, December 13, 2013 | Supporting & Related Material | Meeting Materials | 2013-12-31T05:00:00Z | 2013 | 12 | 2013-12-31T16:12:26Z | 0 | 0 | 09000064814ca1b3 | |||
| EPA-HQ-ORD-2013-0430-0009 | EPA | None EPA-HQ-ORD-2013-0430 | Kevin Bromberg General Comments Presentation for the IRIS Bimonthly Meeting, December 13, 2013 | Supporting & Related Material | Meeting Materials | 2013-12-31T05:00:00Z | 2013 | 12 | 2013-12-31T16:12:09Z | 0 | 0 | 09000064814ca1b0 | |||
| EPA-HQ-ORD-2013-0430-0007 | EPA | None EPA-HQ-ORD-2013-0430 | Nancy Beck's General Comments Presentation at the Bi-Monthly Listening Session, December 13, 2013 | Supporting & Related Material | Meeting Materials | 2013-12-31T05:00:00Z | 2013 | 12 | 2013-12-31T16:13:08Z | 0 | 0 | 09000064814ca1ae | |||
| EPA-HQ-ORD-2013-0430-0006 | EPA | None EPA-HQ-ORD-2013-0430 | Nancy Beck's General Comments RDX Presentation for the USEPA Bi-Monthly Listening Session, December 12 - 13, 2013 | Supporting & Related Material | Meeting Materials | 2013-12-31T05:00:00Z | 2013 | 12 | 2013-12-31T16:12:40Z | 0 | 0 | 09000064814c5dcb | |||
| EPA-HQ-ORD-2013-0430-0004 | EPA | None EPA-HQ-ORD-2013-0430 | Cogliano presentation for the December 2013 First IRIS Bimonthly Public Meeting | Supporting & Related Material | Meeting Materials | 2013-12-18T05:00:00Z | 2013 | 12 | 2013-12-18T19:24:45Z | 0 | 0 | 09000064814c3144 | |||
| EPA-HQ-ORD-2013-0430-0001 | EPA | None EPA-HQ-ORD-2013-0430 | Announcement of the IRIS Public Meeting Schedule for Calendar Years 2013 and 2014; Announcement of the Availability of Preliminary Materials for tert-Butyl Alcohol, Ethyl tert-Butyl Ether, and Hexahydro-1,3,5-trinitro-1,3,5-triazine; and Announcement of a Public Meeting on These Preliminary Materials | Notice | 2013-08-09T04:00:00Z | 2013 | 8 | 2013-08-09T04:00:00Z | 2014-12-09T04:59:59Z | 2016-04-30T20:14:26Z | 2013-19366 | 0 | 0 | 09000064813a8580 |
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;