documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPP-2010-0783" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2010-0783-0013 | EPA | None EPA-HQ-OPP-2010-0783 | Registration Review; Open Pesticide Dockets and Availability of Final Work Plans for Certain Pesticides | Notice | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-27T05:00:00Z | 2012-02-22T04:59:59Z | 2011-12-27T17:20:06Z | 2011-32658 | 0 | 0 | 0900006480f8766e | |
| EPA-HQ-OPP-2010-0783-0012 | EPA | None EPA-HQ-OPP-2010-0783 | 10/20/11 - Sodium Asulam Amended Final Work Plan | Supporting & Related Material | Report | 2011-10-31T04:00:00Z | 2011 | 10 | 2011-10-31T19:33:28Z | 0 | 0 | 0900006480f5e1ec | |||
| EPA-HQ-OPP-2010-0783-0011 | EPA | None EPA-HQ-OPP-2010-0783 | 8/29/11 - Sodium Asulam Final Work Plan Registration Review | Supporting & Related Material | Work Plan | 2011-09-01T04:00:00Z | 2011 | 9 | 2011-09-01T13:58:41Z | 0 | 0 | 0900006480f08fd1 | |||
| EPA-HQ-OPP-2010-0783-0003 | EPA | None EPA-HQ-OPP-2010-0783 | 12/22/10 - Registration Review: Preliminary Problem Formulation for Environmental Fate and Ecological Risk, Endangered Species, and Drinking Water Assessments for Asulam and Sodium Asulam | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T15:26:34Z | 0 | 0 | 0900006480c08275 | |||
| EPA-HQ-OPP-2010-0783-0001 | EPA | None EPA-HQ-OPP-2010-0783 | Registration Reviews: Pesticide Dockets Opened for Review and Comment And Other Docket Actions, etc. | Notice | Federal Register Document | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T04:00:00Z | 2011-06-01T03:59:59Z | 2011-03-30T15:26:29Z | 2011-07321 | 0 | 0 | 0900006480c13ba1 |
| EPA-HQ-OPP-2010-0783-0005 | EPA | None EPA-HQ-OPP-2010-0783 | 4/21/10 - Appendix A for Sodium Asulam | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T15:26:38Z | 0 | 0 | 0900006480c08277 | |||
| EPA-HQ-OPP-2010-0783-0007 | EPA | None EPA-HQ-OPP-2010-0783 | 12/2/10 - BEAD Chemical Profile for Registration Review on Asulam, Sodium Salt | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T15:26:42Z | 0 | 0 | 0900006480c08279 | |||
| EPA-HQ-OPP-2010-0783-0002 | EPA | None EPA-HQ-OPP-2010-0783 | 3/15/11 - Summary Document for Sodium Asulam | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T15:26:32Z | 0 | 0 | 0900006480c08273 | |||
| EPA-HQ-OPP-2010-0783-0006 | EPA | None EPA-HQ-OPP-2010-0783 | 6/23/10 - Asulam Screening Level Usage Analysis (SLUA) | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T15:26:40Z | 0 | 0 | 0900006480c08278 | |||
| EPA-HQ-OPP-2010-0783-0004 | EPA | None EPA-HQ-OPP-2010-0783 | 3/2/11 - Asulam: Human Health Risk Scoping Document in Support of Registration Review | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T15:26:36Z | 0 | 0 | 0900006480c08276 |
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;