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-2011-0691" 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-2011-0691-0013 | EPA | None EPA-HQ-OPP-2011-0691 | Pesticide Registration Review: Interim Decisions for Several Pesticides and Case Closure for Meat Meal; Notice of Availability | Notice | 2019-12-19T05:00:00Z | 2019 | 12 | 2019-12-19T05:00:00Z | 2019-12-19T19:21:30Z | 2019-27375 | 0 | 0 | 090000648423ac9a | ||
| EPA-HQ-OPP-2011-0691-0011 | EPA | None EPA-HQ-OPP-2011-0691 | Aviglycine Hydrochloride Interim Registration Review Decision Case Number 6070 | Supporting & Related Material | Decision | 2019-09-30T04:00:00Z | 2019 | 9 | 2019-09-30T20:57:29Z | 0 | 0 | 0900006483f37004 | |||
| EPA-HQ-OPP-2011-0691-0009 | EPA | None EPA-HQ-OPP-2011-0691 | Aviglycine Hydrochloride Proposed Interim Registration Review Decision Case Number 6070 | Supporting & Related Material | Decision | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:25:42Z | 0 | 0 | 0900006483976e82 | |||
| EPA-HQ-OPP-2011-0691-0007 | EPA | None EPA-HQ-OPP-2011-0691 | Pesticide Product Registration: Registration Review Proposed Interim Decisions for Several Pesticides | Notice | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T04:00:00Z | 2019-05-18T03:59:59Z | 2019-05-18T01:05:34Z | 2019-04969 | 0 | 0 | 0900006483afc31c | |
| EPA-HQ-OPP-2011-0691-0008 | EPA | None EPA-HQ-OPP-2011-0691 | Aviglycine Hydrochloride Final Work Plan Registration Review Case Number 6070 | Supporting & Related Material | Work Plan | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T21:25:41Z | 0 | 0 | 0900006481130aff | |||
| EPA-HQ-OPP-2011-0691-0006 | EPA | None EPA-HQ-OPP-2011-0691 | Aviglycine Hydrochloride Final Work Plan | Supporting & Related Material | Work Plan | 2012-09-26T04:00:00Z | 2012 | 9 | 2012-09-26T20:53:51Z | 0 | 0 | 09000064811256d5 | |||
| EPA-HQ-OPP-2011-0691-0003 | EPA | None EPA-HQ-OPP-2011-0691 | Product Chemsitry Scoping Document | Supporting & Related Material | Report | 2011-09-30T04:00:00Z | 2011 | 9 | 2011-09-30T13:09:18Z | 0 | 0 | 0900006480f26048 | |||
| EPA-HQ-OPP-2011-0691-0005 | EPA | None EPA-HQ-OPP-2011-0691 | Preliminary Environmental Assessment for Aviglycine Hydrochloride registration review | Supporting & Related Material | Report | 2011-09-30T04:00:00Z | 2011 | 9 | 2011-09-30T13:09:19Z | 0 | 0 | 0900006480f2604a | |||
| EPA-HQ-OPP-2011-0691-0001 | EPA | None EPA-HQ-OPP-2011-0691 | Registration Reviews: Pesticide Dockets Opened for Review and Comment and Other Docket Actions | Notice | 2011-09-30T04:00:00Z | 2011 | 9 | 2011-09-30T04:00:00Z | 2011-11-30T04:59:59Z | 2012-03-24T19:30:11Z | 2011-24819 | 0 | 0 | 0900006480f43435 | |
| EPA-HQ-OPP-2011-0691-0002 | EPA | None EPA-HQ-OPP-2011-0691 | Aviglycine Hydrochloride: Preliminary Work Plan and Summary Document | Supporting & Related Material | Report | 2011-09-30T04:00:00Z | 2011 | 9 | 2011-09-30T13:09:18Z | 0 | 0 | 0900006480f26047 | |||
| EPA-HQ-OPP-2011-0691-0004 | EPA | None EPA-HQ-OPP-2011-0691 | Human Health Risk Assessment for AVG Registration Review | Supporting & Related Material | Report | 2011-09-30T04:00:00Z | 2011 | 9 | 2011-09-30T13:09:18Z | 0 | 0 | 0900006480f26049 |
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;