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-2014-0011" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2014-0011-0009 | EPA | None EPA-HQ-OPP-2014-0011 | Pesticide Product Registrations: Applications for New Uses | Notice | 2016-10-18T04:00:00Z | 2016 | 10 | 2016-10-29T20:07:17Z | 2016-25165 | 0 | 0 | 090000648230f3f4 | |||
| EPA-HQ-OPP-2014-0011-0008 | EPA | None EPA-HQ-OPP-2014-0011 | Pesticide Product Registrations: Applications for New Uses; Correction | Notice | Correction | 2016-10-05T04:00:00Z | 2016 | 10 | 2016-10-05T04:00:00Z | 2016-10-06T01:38:53Z | 2016-24103 | 0 | 0 | 090000648229b7d8 | |
| EPA-HQ-OPP-2014-0011-0007 | EPA | None EPA-HQ-OPP-2014-0011 | Pesticide Product Registrations: Applications for New Uses and New Active Ingredients | Notice | 2016-08-18T04:00:00Z | 2016 | 8 | 2016-08-18T04:00:00Z | 2016-09-11T04:05:21Z | 2016-19758 | 0 | 0 | 0900006482181316 | ||
| EPA-HQ-OPP-2014-0011-0006 | EPA | None EPA-HQ-OPP-2014-0011 | Pesticide Product Registrations: Applications for New Uses | Notice | 2015-01-14T05:00:00Z | 2015 | 1 | 2015-01-14T17:25:27Z | 2015-00502 | 0 | 0 | 09000064819c89bc | |||
| EPA-HQ-OPP-2014-0011-0005 | EPA | None EPA-HQ-OPP-2014-0011 | Pesticide Registrations: Applications for New Uses | Notice | 2014-12-10T05:00:00Z | 2014 | 12 | 2015-01-12T02:32:45Z | 2014-28943 | 0 | 0 | 090000648196ab7d | |||
| EPA-HQ-OPP-2014-0011-0004 | EPA | None EPA-HQ-OPP-2014-0011 | Pesticide Products: Registration Application to Register New Uses | Notice | 2014-07-21T04:00:00Z | 2014 | 7 | 2014-07-21T04:00:00Z | 2014-07-21T15:30:02Z | 2014-17130 | 0 | 0 | 09000064817cdbdc | ||
| EPA-HQ-OPP-2014-0011-0002 | EPA | None EPA-HQ-OPP-2014-0011 | Pesticide Product Registrations; Applications for New Uses | Notice | 2014-04-25T04:00:00Z | 2014 | 4 | 2014-04-26T00:51:32Z | 2014-09449 | 0 | 0 | 09000064816cb375 | |||
| EPA-HQ-OPP-2014-0011-0001 | EPA | None EPA-HQ-OPP-2014-0011 | Pesticide Products: Registration Applications to Register New Uses | Notice | Notice of Receipt of Petition | 2014-03-27T04:00:00Z | 2014 | 3 | 2014-03-27T04:00:00Z | 2014-04-29T03:59:59Z | 2014-04-26T01:01:47Z | 2014-06816 | 0 | 0 | 09000064816867f7 |
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;