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-2009-1017" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, withdrawn, 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-2009-1017-0036 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2012-12-19T05:00:00Z | 2012 | 12 | 2012-12-19T05:00:00Z | 2012-12-19T15:35:51Z | 2012-30433 | 0 | 0 | 0900006481192324 | ||
| EPA-HQ-OPP-2009-1017-0035 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-12-05T05:00:00Z | 2012 | 12 | 2012-12-05T05:00:00Z | 2013-01-05T04:59:59Z | 2012-12-05T15:52:54Z | 2012-29384 | 0 | 0 | 090000648117f7cd | |
| EPA-HQ-OPP-2009-1017-0034 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T04:00:00Z | 2012-10-20T03:59:59Z | 2012-09-19T15:07:55Z | 2012-22966 | 0 | 0 | 090000648111deca | |
| EPA-HQ-OPP-2009-1017-0033 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Orders for Certain Pesticide Registrations | Notice | 2012-09-12T04:00:00Z | 2012 | 9 | 2012-09-12T04:00:00Z | 2012-09-12T15:26:52Z | 2012-22197 | 0 | 0 | 0900006481112f1e | ||
| EPA-HQ-OPP-2009-1017-0032 | EPA | None EPA-HQ-OPP-2009-1017 | Cancellation Orders for Certain Pesticide Registrations: MGK 264, Pyrethrins, Pyriproxyfen, and Permethrin; Correction | Notice | 2012-08-31T04:00:00Z | 2012 | 8 | 2012-08-31T04:00:00Z | 2012-08-31T13:29:28Z | 2012-21433 | 0 | 0 | 09000064810fd632 | ||
| EPA-HQ-OPP-2009-1017-0031 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-06-13T04:00:00Z | 2012 | 6 | 2012-06-13T04:00:00Z | 2012-07-14T03:59:59Z | 2012-06-13T13:56:58Z | 2012-14422 | 0 | 0 | 0900006481046f5c | |
| EPA-HQ-OPP-2009-1017-0030 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2012-05-02T04:00:00Z | 2012 | 5 | 2012-05-02T04:00:00Z | 2012-05-02T14:31:02Z | 2012-10436 | 0 | 0 | 0900006481003287 | ||
| EPA-HQ-OPP-2009-1017-0029 | EPA | None EPA-HQ-OPP-2009-1017 | Pesticide Tolerances: Pyroxasulfone | Rule | 2012-02-29T00:00:00Z | 2012 | 2 | 2012-03-06T16:22:58Z | 0 | 1 | 0900006480fc8d47 | ||||
| EPA-HQ-OPP-2009-1017-0028 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2012-02-22T05:00:00Z | 2012 | 2 | 2012-02-22T05:00:00Z | 2012-03-24T03:59:59Z | 2012-02-22T14:34:06Z | 2012-03798 | 0 | 0 | 0900006480fbd5a6 | |
| EPA-HQ-OPP-2009-1017-0027 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2012-02-15T05:00:00Z | 2012 | 2 | 2012-02-15T05:00:00Z | 2012-02-15T16:34:28Z | 2012-02982 | 0 | 0 | 0900006480fb721c |
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;