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-2012-0108" and posted_year = 2012 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)
| 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-0108-0009 | EPA | None EPA-HQ-OPP-2012-0108 | Public Participation for Draft Biopesticides Registration Action Document (BRAD) Bacillus thuringiensis eCry3.1Ab Insecticidal Protein and Genetic Material | Other | Public Participation | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T04:00:00Z | 2012-07-26T03:59:59Z | 2012-06-26T16:32:46Z | 0 | 0 | 0900006481068c36 | |
| EPA-HQ-OPP-2012-0108-0010 | EPA | None EPA-HQ-OPP-2012-0108 | Draft Biopesticides Registration Action Document Bacillus thuringiensis eCry3.1Ab Insecticidal Protein and Genetic Material | Supporting & Related Material | Report | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T16:33:12Z | 0 | 0 | 090000648105e580 | |||
| EPA-HQ-OPP-2012-0108-0008 | EPA | None EPA-HQ-OPP-2012-0108 | 67979-EU MRID Study Volumes - MRID 484430-01-Thru -08 | Supporting & Related Material | Report | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T16:27:03Z | 0 | 0 | 0900006480fb64c4 | |||
| EPA-HQ-OPP-2012-0108-0007 | EPA | None EPA-HQ-OPP-2012-0108 | 67979-EG MRID Study Volumes - MRID 484429-01 Thru -10 | Supporting & Related Material | Report | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T16:26:58Z | 0 | 0 | 0900006480fb64c3 | |||
| EPA-HQ-OPP-2012-0108-0003 | EPA | None EPA-HQ-OPP-2012-0108 | Application for Registration of Bt11MIR162xMIR604xTC150x5307 Corn. 67979-EG Admin Materials | Supporting & Related Material | Report | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T16:26:37Z | 0 | 0 | 0900006480fb64be | |||
| EPA-HQ-OPP-2012-0108-0006 | EPA | None EPA-HQ-OPP-2012-0108 | 67979-EE MRID Study Volume -MRID 484425-40 | Supporting & Related Material | Report | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T16:26:53Z | 0 | 0 | 0900006480fb64c2 | |||
| EPA-HQ-OPP-2012-0108-0001 | EPA | None EPA-HQ-OPP-2012-0108 | Pesticide Products; Registration Applications | Notice | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T05:00:00Z | 2012-04-10T03:59:59Z | 2012-03-09T16:27:03Z | 2012-05644 | 0 | 0 | 0900006480fd2d8e | |
| EPA-HQ-OPP-2012-0108-0002 | EPA | None EPA-HQ-OPP-2012-0108 | Application for Registration of 5307 Corn. 67979-EE Admin Materials - CBI Deleted | Supporting & Related Material | Report | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T16:26:31Z | 0 | 0 | 0900006480fb64bd | |||
| EPA-HQ-OPP-2012-0108-0005 | EPA | None EPA-HQ-OPP-2012-0108 | 67979-EE MRID Study Volumes - MRID 484425-01 Thru -39, and -41 | Supporting & Related Material | Report | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T16:26:48Z | 0 | 0 | 0900006480fb64c1 | |||
| EPA-HQ-OPP-2012-0108-0004 | EPA | None EPA-HQ-OPP-2012-0108 | Application for the Registration of Bt11xMIR604xTC1507x5307 Corn. 67979-EU Admin Materials | Supporting & Related Material | Report | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T16:26:42Z | 0 | 0 | 0900006480fb64c0 |
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;