documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2010-0014" and posted_year = 2012 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-2010-0014-0030 | EPA | None EPA-HQ-OPP-2010-0014 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-11-28T05:00:00Z | 2012 | 11 | 2012-11-28T05:00:00Z | 2013-05-29T03:59:59Z | 2013-01-31T15:15:07Z | 2012-28726 | 0 | 0 | 09000064811762ee | |
| EPA-HQ-OPP-2010-0014-0029 | EPA | None EPA-HQ-OPP-2010-0014 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2012-10-17T04:00:00Z | 2012 | 10 | 2012-10-17T04:00:00Z | 2012-10-17T14:15:16Z | 2012-25426 | 0 | 0 | 0900006481144d11 | ||
| EPA-HQ-OPP-2010-0014-0028 | EPA | None EPA-HQ-OPP-2010-0014 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T04:00:00Z | 2013-03-19T03:59:59Z | 2012-09-19T15:02:47Z | 2012-22970 | 0 | 0 | 090000648111dfc1 | |
| EPA-HQ-OPP-2010-0014-0027 | EPA | None EPA-HQ-OPP-2010-0014 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2012-07-25T04:00:00Z | 2012 | 7 | 2012-07-25T04:00:00Z | 2012-07-25T14:36:28Z | 2012-18132 | 0 | 0 | 09000064810af089 | ||
| EPA-HQ-OPP-2010-0014-0026 | EPA | None EPA-HQ-OPP-2010-0014 | Receipts of Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-07-06T04:00:00Z | 2012 | 7 | 2012-07-06T04:00:00Z | 2013-01-03T04:59:59Z | 2013-01-12T03:01:35Z | 2012-16448 | 0 | 0 | 090000648107d289 | |
| EPA-HQ-OPP-2010-0014-0025 | EPA | None EPA-HQ-OPP-2010-0014 | Product Cancellation Orders for Certain Pesticide Registrations | Notice | 2012-05-23T04:00:00Z | 2012 | 5 | 2012-05-23T04:00:00Z | 2012-05-23T13:43:21Z | 2012-12488 | 0 | 0 | 0900006481019d58 | ||
| EPA-HQ-OPP-2010-0014-0022 | EPA | None EPA-HQ-OPP-2010-0014 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-02-29T05:00:00Z | 2012 | 2 | 2012-02-29T05:00:00Z | 2012-08-28T03:59:59Z | 2012-02-29T18:50:11Z | 2012-04678 | 0 | 0 | 0900006480fc8de4 | |
| EPA-HQ-OPP-2010-0014-0021 | EPA | None EPA-HQ-OPP-2010-0014 | Rescission of Certain Product Cancellations | Notice | 2012-02-01T05:00:00Z | 2012 | 2 | 2012-02-01T05:00:00Z | 2012-02-01T14:47:07Z | 2012-02209 | 0 | 0 | 0900006480fab147 | ||
| EPA-HQ-OPP-2010-0014-0020 | EPA | None EPA-HQ-OPP-2010-0014 | Receipt of Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-01-11T05:00:00Z | 2012 | 1 | 2012-01-11T05:00:00Z | 2012-07-10T03:59:59Z | 2012-05-17T02:00:22Z | 2012-00340 | 0 | 0 | 0900006480f92742 |
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;