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-0439" and posted_year = 2020 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-OPP-2010-0439-0031 | EPA | None EPA-HQ-OPP-2010-0439 | Pesticide Registration Review: Interim Decisions for Several Pesticides | Notice | 2020-10-23T04:00:00Z | 2020 | 10 | 2020-10-23T04:00:00Z | 2020-12-08T18:10:55Z | 2020-23504 | 0 | 0 | 0900006484929a45 | ||
| EPA-HQ-OPP-2010-0439-0030 | EPA | None EPA-HQ-OPP-2010-0439 | Gliocladium virens G-21 and Gliocladium catenulatum strain J1446 PC Codes 129000 and 021009 Interim Registration Review Decision Case Number 6020 | Supporting & Related Material | Decision | 2020-10-14T04:00:00Z | 2020 | 10 | 2020-10-14T19:21:03Z | 0 | 0 | 090000648486aae7 | |||
| EPA-HQ-OPP-2010-0439-0026 | EPA | None EPA-HQ-OPP-2010-0439 | Gliocladium virens G-21 and Gliocladium Catenulatum Strain J1446 PC Codes 129000 and 021009 Proposed Interim Registration Review Decision Case Number 6020 | Supporting & Related Material | Decision | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:17:59Z | 0 | 0 | 09000064844676ae | |||
| EPA-HQ-OPP-2010-0439-0027 | EPA | None EPA-HQ-OPP-2010-0439 | Review of Data Needs Identified in the Final Work Plan for Gliocladium Catenulatum strain J1446 and Gliocladium virens G-21 | Supporting & Related Material | Work Plan | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:17:59Z | 0 | 0 | 0900006484467d1a | |||
| EPA-HQ-OPP-2010-0439-0023 | EPA | None EPA-HQ-OPP-2010-0439 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T04:00:00Z | 2020-07-07T03:59:59Z | 2020-06-12T01:04:09Z | 2020-09571 | 0 | 0 | 0900006484562112 | |
| EPA-HQ-OPP-2010-0439-0025 | EPA | None EPA-HQ-OPP-2010-0439 | Review of Data Needs Identified in the Final Work Plan for Gliocladium catenulatum strain J1446 and Gliocladium virens G-21 | Supporting & Related Material | Data | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:17:58Z | 0 | 0 | 090000648425af44 | |||
| EPA-HQ-OPP-2010-0439-0024 | EPA | None EPA-HQ-OPP-2010-0439 | Threatened and Endangered Species Risk Assessment for Gliocladium catenulatum strain J1446 (PC Code 021009) November 14, 2019 | Supporting & Related Material | Risk Assessment | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:17:57Z | 0 | 0 | 0900006484171fb3 | |||
| EPA-HQ-OPP-2010-0439-0028 | EPA | None EPA-HQ-OPP-2010-0439 | Threatened and Endangered Species Risk Assessment for Gliocladium Catenulatum Strain J1446 and Gliocladium Virens Strain G-21 (PC Code 129000)-Supersedes memo dated 12-20-2019 | Supporting & Related Material | Risk Assessment | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:18:00Z | 0 | 0 | 0900006484467b1a |
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;