documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2009-0877" 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)
document_type 2
agency_id 1
- EPA 11
| 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-OPP-2009-0877-0013 | EPA | None EPA-HQ-OPP-2009-0877 | Interim Registration Review Decisions and Case Closures for Several Pesticides | Notice | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T05:00:00Z | 2018-12-04T17:45:27Z | 2018-26354 | 0 | 0 | 090000648393c1dc | ||
| EPA-HQ-OPP-2009-0877-0011 | EPA | None EPA-HQ-OPP-2009-0877 | Ethylene Interim Registration Review Decision Case Number 3071 | Supporting & Related Material | Decision | 2018-10-12T04:00:00Z | 2018 | 10 | 2018-10-12T22:54:55Z | 0 | 0 | 090000648376e615 | |||
| EPA-HQ-OPP-2009-0877-0010 | EPA | None EPA-HQ-OPP-2009-0877 | Ethylene Proposed Interim Decision Case Number 3071 | Supporting & Related Material | Decision | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T21:13:29Z | 0 | 0 | 090000648309631a | |||
| EPA-HQ-OPP-2009-0877-0009 | EPA | None EPA-HQ-OPP-2009-0877 | Registration Reviews: Proposed Interim Decisions for Several Pesticides | Notice | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T04:00:00Z | 2018-07-24T03:59:59Z | 2018-07-21T01:03:55Z | 2018-11193 | 0 | 0 | 09000064832df420 | |
| EPA-HQ-OPP-2009-0877-0008 | EPA | None EPA-HQ-OPP-2009-0877 | Ethylene Final Work Plan | Supporting & Related Material | Report | 2010-06-24T04:00:00Z | 2010 | 6 | 2010-08-16T14:58:32Z | 0 | 0 | 0900006480b07d2b | |||
| EPA-HQ-OPP-2009-0877-0003 | EPA | None EPA-HQ-OPP-2009-0877 | Preliminary Human Health Assessment for the Registration Review Of Ethylene | Supporting & Related Material | 2009-12-28T05:00:00Z | 2009 | 12 | 2010-08-16T14:54:27Z | 0 | 0 | 0900006480a67617 | ||||
| EPA-HQ-OPP-2009-0877-0005 | EPA | None EPA-HQ-OPP-2009-0877 | Registration Review: Product Chemistry data review for the Plant Growth Regulator and Herbicide Ethylene | Supporting & Related Material | 2009-12-28T05:00:00Z | 2009 | 12 | 2010-08-16T14:54:27Z | 0 | 0 | 0900006480a67619 | ||||
| EPA-HQ-OPP-2009-0877-0002 | EPA | None EPA-HQ-OPP-2009-0877 | Ethylene Summary Document Registration Review: Initial Docket December 2009 | Supporting & Related Material | 2009-12-28T05:00:00Z | 2009 | 12 | 2010-08-16T14:54:27Z | 0 | 0 | 0900006480a67616 | ||||
| EPA-HQ-OPP-2009-0877-0004 | EPA | None EPA-HQ-OPP-2009-0877 | Ethylene R.E.D. Facts | Supporting & Related Material | 2009-12-28T05:00:00Z | 2009 | 12 | 2010-08-16T14:54:27Z | 0 | 0 | 0900006480a67618 | ||||
| EPA-HQ-OPP-2009-0877-0006 | EPA | None EPA-HQ-OPP-2009-0877 | Ethylene Ecological Scoping Document | Supporting & Related Material | 2009-12-28T05:00:00Z | 2009 | 12 | 2010-08-16T14:54:27Z | 0 | 0 | 0900006480a6761a | ||||
| EPA-HQ-OPP-2009-0877-0001 | EPA | None EPA-HQ-OPP-2009-0877 | Registration Review; Ethylene Docket Opened for Review and Comment | Notice | Federal Register Document | 2009-12-28T05:00:00Z | 2009 | 12 | 2009-12-28T05:00:00Z | 2010-02-27T04:59:59Z | 2010-08-16T14:54:34Z | E9-30622 | 0 | 0 | 0900006480a7206e |
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;