documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OPP-2016-0594" and posted_year = 2017 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-2016-0594-0667 | EPA | None EPA-HQ-OPP-2016-0594 | Pesticide Tolerances: 2,4-D | Rule | Final Rule | 2017-02-07T05:00:00Z | 2017 | 2 | 2017-02-07T05:00:00Z | 2017-04-11T03:59:59Z | 2017-02-14T02:00:28Z | 2017-02477 | 0 | 0 | 09000064824afc9c |
| EPA-HQ-OPP-2016-0594-0659 | EPA | None EPA-HQ-OPP-2016-0594 | Enlist Duo Label Pesticide Product Label 62719-649 | Supporting & Related Material | Fact/Data Sheet | 2017-01-12T05:00:00Z | 2017 | 1 | 2017-01-13T01:38:13Z | 0 | 0 | 0900006482464449 | |||
| EPA-HQ-OPP-2016-0594-0661 | EPA | None EPA-HQ-OPP-2016-0594 | Notice of Conditional Pesticide Registration - Enlist Duo -EPA Registration No. 62719-649 | Supporting & Related Material | Permit, Registration | 2017-01-12T05:00:00Z | 2017 | 1 | 2017-01-13T01:38:22Z | 0 | 0 | 0900006482464dbd | |||
| EPA-HQ-OPP-2016-0594-0662 | EPA | None EPA-HQ-OPP-2016-0594 | Response to Public Comments Received Regarding the Evaluation of Enlist Duo on Enlist Corn, Cotton, and Soybeans | Supporting & Related Material | Comment Response | 2017-01-12T05:00:00Z | 2017 | 1 | 2017-01-13T01:38:17Z | 0 | 0 | 0900006482464dbe | |||
| EPA-HQ-OPP-2016-0594-0660 | EPA | None EPA-HQ-OPP-2016-0594 | Final Registration Decision of Enlist Duo TM Herbicide | Supporting & Related Material | Decision | 2017-01-12T05:00:00Z | 2017 | 1 | 2017-01-13T01:38:08Z | 0 | 0 | 090000648246444a |
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;