documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPP-2015-0787" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2015-0787-0006 | EPA | None EPA-HQ-OPP-2015-0787 | Pesticide Petitions: Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | Petition | 2016-12-23T05:00:00Z | 2016 | 12 | 2016-12-23T05:00:00Z | 2017-01-20T04:59:59Z | 2016-12-26T01:35:05Z | 2016-30647 | 0 | 0 | 090000648242bbde |
| EPA-HQ-OPP-2015-0787-0007 | EPA | None EPA-HQ-OPP-2015-0787 | K-I CHEMICAL U.S.A., Inc. Notice of Filing Pesticide Petition [no number assigned] establishing tolerances for residues of pyroxasulfone and its metabolites in or on dried shelled peas and beans, pea hay, pea vines, cowpea hay, cowpea forage, flax, peanut, and peanut hay, peanut meal, vegetable, foliage of legume, except soybean | Supporting & Related Material | Petition | 2016-12-23T05:00:00Z | 2016 | 12 | 2016-12-26T01:35:10Z | 0 | 0 | 0900006482409f4f | |||
| EPA-HQ-OPP-2015-0787-0005 | EPA | None EPA-HQ-OPP-2015-0787 | Pesticide Product Registrations; Applications: New Uses | Notice | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T05:00:00Z | 2016-12-13T04:59:59Z | 2016-11-11T01:50:24Z | 2016-27192 | 0 | 0 | 090000648238a1d3 | |
| EPA-HQ-OPP-2015-0787-0003 | EPA | None EPA-HQ-OPP-2015-0787 | K-I Chemical U.S.A., Inc Notice of Filing Pesticide Petition #[Number not yet assigned] establishing tolerances for pyroxasulfone (3-[(5-(difluoromethoxy)-1-methyl-3-(trifluoromethyl) pyrazole-4-ylmethylsulfonyl]-4,5-dihydro-5,5-dimethyl-1,2-oxazole) and various metabolites for dried shelled peas and beans, peanut and peanut hay | Supporting & Related Material | Petition | 2016-06-22T04:00:00Z | 2016 | 6 | 2016-06-23T00:39:54Z | 0 | 0 | 0900006481deea92 | |||
| EPA-HQ-OPP-2015-0787-0002 | EPA | None EPA-HQ-OPP-2015-0787 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2016-06-22T04:00:00Z | 2016 | 6 | 2016-06-22T04:00:00Z | 2016-07-23T03:59:59Z | 2016-07-01T01:00:44Z | 2016-14816 | 0 | 0 | 0900006482058349 | |
| EPA-HQ-OPP-2015-0787-0001 | EPA | None EPA-HQ-OPP-2015-0787 | Pesticide Product Registration; Receipt of Applications for New Uses | Notice | 2016-03-16T04:00:00Z | 2016 | 3 | 2016-03-16T04:00:00Z | 2016-04-16T03:59:59Z | 2016-04-16T02:00:42Z | 2016-05818 | 0 | 0 | 0900006481ec8b15 |
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;