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-2019-0384" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-2019-0384-0019 | EPA | None EPA-HQ-OPP-2019-0384 | Indoxacarb. Human Health Risk Assessment for Indoxacarb to Support the Proposed New Use on Tree Nut Group 14-12 | Supporting & Related Material | Risk Assessment | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-17T01:33:27Z | 0 | 0 | 09000064848e72a1 | |||
| EPA-HQ-OPP-2019-0384-0018 | EPA | None EPA-HQ-OPP-2019-0384 | Pesticide Tolerances: Indoxacarb | Rule | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T05:00:00Z | 2021-01-16T04:59:59Z | 2020-11-16T15:04:27Z | 2020-23420 | 0 | 0 | 0900006484960385 | |
| EPA-HQ-OPP-2019-0384-0016 | EPA | None EPA-HQ-OPP-2019-0384 | Pesticide Product Registration: Applications for New Uses (June 2020) | Notice | 2020-07-21T04:00:00Z | 2020 | 7 | 2020-07-21T04:00:00Z | 2020-08-21T03:59:59Z | 2020-10-04T03:22:08Z | 2020-15694 | 0 | 0 | 0900006484791524 | |
| EPA-HQ-OPP-2019-0384-0015 | EPA | None EPA-HQ-OPP-2019-0384 | FMC Corporation Notice of Filing Pesticide Petition to establish Indoxacarb, [(S)-methyl 7-chloro-2,5-dihydro-2-[[(methoxycarbonyl)[4- (trifluoromethoxy)- phenyl]amino]carbonyl]indeno[1,2e] [1,3,4]oxadiazine-4a (3H)- carboxylate] | Supporting & Related Material | Petition | 2020-05-29T04:00:00Z | 2020 | 5 | 2020-10-04T03:22:09Z | 0 | 0 | 09000064843dc61c | |||
| EPA-HQ-OPP-2019-0384-0014 | EPA | None EPA-HQ-OPP-2019-0384 | Pesticide Product Registration; Applications: New Uses | Notice | 2020-05-29T04:00:00Z | 2020 | 5 | 2020-05-29T04:00:00Z | 2020-06-30T03:59:59Z | 2020-10-04T03:21:20Z | 2020-11572 | 0 | 0 | 09000064846bcea6 | |
| EPA-HQ-OPP-2019-0384-0013 | EPA | None EPA-HQ-OPP-2019-0384 | Pesticide Tolerances: Indoxacarb | Rule | 2020-05-26T04:00:00Z | 2020 | 5 | 2020-05-26T04:00:00Z | 2020-07-28T03:59:59Z | 2020-05-26T19:26:25Z | 2020-10483 | 0 | 0 | 09000064846ac138 | |
| EPA-HQ-OPP-2019-0384-0010 | EPA | None EPA-HQ-OPP-2019-0384 | Pesticide Petition Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2020-02-25T05:00:00Z | 2020 | 2 | 2020-02-25T05:00:00Z | 2020-03-27T03:59:59Z | 2020-04-16T12:49:47Z | 2020-03637 | 0 | 0 | 09000064843ad3ae | |
| EPA-HQ-OPP-2019-0384-0009 | EPA | None EPA-HQ-OPP-2019-0384 | Pesticide Petition Filed for Residues of Pesticide Chemicals in or on Various Commodities (October 2019) | Proposed Rule | 2020-02-25T05:00:00Z | 2020 | 2 | 2020-02-25T05:00:00Z | 2020-03-13T03:59:59Z | 2020-10-04T03:22:05Z | 2020-02700 | 0 | 0 | 0900006484354023 |
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;