documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-ORD-2009-0229" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-HQ-ORD-2009-0229-0045 | EPA | None EPA-HQ-ORD-2009-0229 | Peer Review Charge Charge to External Peer Reviewers | Supporting & Related Material | Report | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:41Z | 0 | 0 | 0900006482294ec1 | |||
| EPA-HQ-ORD-2009-0229-0046 | EPA | None EPA-HQ-ORD-2009-0229 | ETBE Public Comment Draft Supplemental Material | Supporting & Related Material | Comment Response | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:41Z | 0 | 0 | 0900006482294ec2 | |||
| EPA-HQ-ORD-2009-0229-0051 | EPA | None EPA-HQ-ORD-2009-0229 | ETBE Interagency Consultation Draft Toxicological Review | Supporting & Related Material | Report | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:42Z | 0 | 0 | 0900006482294ec7 | |||
| EPA-HQ-ORD-2009-0229-0048 | EPA | None EPA-HQ-ORD-2009-0229 | ETBE EPA Response to Comments | Supporting & Related Material | Comment Response | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:42Z | 0 | 0 | 0900006482294ec4 | |||
| EPA-HQ-ORD-2009-0229-0047 | EPA | None EPA-HQ-ORD-2009-0229 | ETBE Public Comment Draft Toxicological Review | Supporting & Related Material | Comment Response | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:41Z | 0 | 0 | 0900006482294ec3 | |||
| EPA-HQ-ORD-2009-0229-0052 | EPA | None EPA-HQ-ORD-2009-0229 | ETBE Interagency Consultation Draft Comments from the National Toxicology Program (NTP) | Supporting & Related Material | Comment Response | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:42Z | 0 | 0 | 0900006482294ec8 | |||
| EPA-HQ-ORD-2009-0229-0053 | EPA | None EPA-HQ-ORD-2009-0229 | ETBE Interagency Consultation Draft Comments from the Office of Management and Budget (OMB) | Supporting & Related Material | Comment Response | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:42Z | 0 | 0 | 090000648229523c | |||
| EPA-HQ-ORD-2009-0229-0049 | EPA | None EPA-HQ-ORD-2009-0229 | ETBE Interagency Consultation Draft Charge to External Reviewers | Supporting & Related Material | Report | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:42Z | 0 | 0 | 0900006482294ec5 | |||
| EPA-HQ-ORD-2009-0229-0050 | EPA | None EPA-HQ-ORD-2009-0229 | ETBE Interagency Consultation Draft Supplemental Information | Supporting & Related Material | Report | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T16:09:42Z | 0 | 0 | 0900006482294ec6 | |||
| EPA-HQ-ORD-2009-0229-0044 | EPA | None EPA-HQ-ORD-2009-0229 | Draft Integrated Risk Information System Assessments: Ethyl Tertiary Butyl Ether | Notice | Request for Comments | 2016-09-01T04:00:00Z | 2016 | 9 | 2016-09-01T04:00:00Z | 2016-11-01T03:59:59Z | 2016-11-01T13:02:41Z | 2016-21005 | 0 | 0 | 09000064821bccae |
| EPA-HQ-ORD-2009-0229-0043 | EPA | None EPA-HQ-ORD-2009-0229 | Memorandum to Open Docket for Public Access | Other | Memorandum to Open a Docket | 2016-04-01T04:00:00Z | 2016 | 4 | 2016-04-01T04:00:00Z | 2017-01-01T04:59:59Z | 2016-04-01T13:02:37Z | 0 | 0 | 0900006481f0a1ab |
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;