documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2010-1067" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-OPP-2010-1067-0037 | EPA | None EPA-HQ-OPP-2010-1067 | Fludioxonil Interim Registration Review Decision Case No. 7017 | Supporting & Related Material | Decision | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T17:47:12Z | 0 | 0 | 09000064836ef8e1 | |||
| EPA-HQ-OPP-2010-1067-0036 | EPA | None EPA-HQ-OPP-2010-1067 | 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:46:25Z | 2018-26354 | 0 | 0 | 090000648393c1dd | ||
| EPA-HQ-OPP-2010-1067-0029 | EPA | None EPA-HQ-OPP-2010-1067 | 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:04:09Z | 2018-11193 | 0 | 0 | 09000064832df421 | |
| EPA-HQ-OPP-2010-1067-0033 | EPA | None EPA-HQ-OPP-2010-1067 | Response to Public Comments on the Preliminary Environmental Fate and Ecological Risk Assessment for Fludioxonil | Supporting & Related Material | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T21:31:29Z | 0 | 0 | 0900006483263922 | ||||
| EPA-HQ-OPP-2010-1067-0031 | EPA | None EPA-HQ-OPP-2010-1067 | Fludioxonil, Environmental Fate Data Evaluation Record | Supporting & Related Material | Data | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T21:31:27Z | 0 | 0 | 09000064832213de | |||
| EPA-HQ-OPP-2010-1067-0032 | EPA | None EPA-HQ-OPP-2010-1067 | Fludioxonil, Data Evaluation Records for Ecological Effects Studies (MRIDs) | Supporting & Related Material | Data | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T21:31:28Z | 0 | 0 | 09000064832213e0 | |||
| EPA-HQ-OPP-2010-1067-0030 | EPA | None EPA-HQ-OPP-2010-1067 | Fludioxonil Proposed Interim Registration Review Decision Case Number 7017 | Supporting & Related Material | Decision | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T21:31:26Z | 0 | 0 | 09000064830594f4 | |||
| EPA-HQ-OPP-2010-1067-0028 | EPA | None EPA-HQ-OPP-2010-1067 | Fludioxonil (071503) Screening Level Usage Analysis (SLUA) | Supporting & Related Material | Analysis | 2018-05-03T04:00:00Z | 2018 | 5 | 2018-05-03T22:51:10Z | 0 | 0 | 0900006482e6cb3b |
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;