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-2012-0841" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_end_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- EPA 8
| 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-2012-0841-0056 | EPA | None EPA-HQ-OPP-2012-0841 | Pesticide Tolerances: Dicamba | Rule | Final Rule | 2016-12-08T05:00:00Z | 2016 | 12 | 2016-12-08T05:00:00Z | 2017-02-07T04:59:59Z | 2017-02-15T02:00:38Z | 2016-29245 | 0 | 0 | 09000064823edf77 |
| EPA-HQ-OPP-2012-0841-0054 | EPA | None EPA-HQ-OPP-2012-0841 | Dicamba. Acute and Chronic Dietary Exposure Assessments of Food and Drinking Water to Support the Use of Dicamba on Dicamba-Tolerant Cotton and Soybean for Amended Section 3 Registration, and Registration of the New N.N-Bis-(3-aminopropyl) methylamine (BAPMA) Salt Formulation. | Supporting & Related Material | Risk Assessment | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-25T00:38:31Z | 0 | 0 | 0900006482344713 | |||
| EPA-HQ-OPP-2012-0841-0052 | EPA | None EPA-HQ-OPP-2012-0841 | Dicamba and Dicamba BAPMA Salt: Human-Health Risk Assessment for Proposed Section 3 New Uses on Dicamba-tolerant Cotton and Soybean | Supporting & Related Material | Risk Assessment | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-25T00:38:35Z | 0 | 0 | 0900006482344710 | |||
| EPA-HQ-OPP-2012-0841-0053 | EPA | None EPA-HQ-OPP-2012-0841 | Dicamba. Occupational and Residential Exposure Assessment for a Proposed Use on Herbicide-Tolerant Soybean and Cotton | Supporting & Related Material | Risk Assessment | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-25T00:38:26Z | 0 | 0 | 0900006482344712 | |||
| EPA-HQ-OPP-2012-0841-0055 | EPA | None EPA-HQ-OPP-2012-0841 | Dicamba. Section 3 Registration for the Amended Use ofDicamba on Dicamba-Tolerant Cotton. Summary of Analytical Chemistry and Residue Data. | Supporting & Related Material | Risk Assessment | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-25T00:38:40Z | 0 | 0 | 0900006482344714 | |||
| EPA-HQ-OPP-2012-0841-0051 | EPA | None EPA-HQ-OPP-2012-0841 | Pesticide Products: Registration Applications to Register New Uses | Notice | 2014-06-13T04:00:00Z | 2014 | 6 | 2014-06-13T04:00:00Z | 2013-01-19T04:59:59Z | 2014-06-13T15:11:20Z | 2012-30614 | 0 | 0 | 0900006481746297 | |
| EPA-HQ-OPP-2012-0841-0001 | EPA | None EPA-HQ-OPP-2012-0841 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2012-12-19T05:00:00Z | 2012 | 12 | 2012-12-19T05:00:00Z | 2013-01-19T04:59:59Z | 2014-06-13T15:10:38Z | 2012-30450 | 0 | 0 | 0900006481192d4f | |
| EPA-HQ-OPP-2012-0841-0002 | EPA | None EPA-HQ-OPP-2012-0841 | Notice of Filing for Use of Dicamba on Herbicide-Tolerant MON 87701 Cotton. | Supporting & Related Material | 2012-12-19T05:00:00Z | 2012 | 12 | 2012-12-19T21:36:59Z | 0 | 0 | 0900006481151166 |
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;