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 = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-0048 | EPA | None EPA-HQ-OPP-2009-1017 | Pesticide Registrations: Product Cancellation Order; Correction | Notice | 2013-12-04T05:00:00Z | 2013 | 12 | 2013-12-04T05:00:00Z | 2013-12-04T16:46:41Z | 2013-28987 | 0 | 0 | 09000064814a627f | ||
| EPA-HQ-OPP-2009-1017-0047 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel and Amend Registration(s) to Terminate Certain Uses: Methiocarb, Lambda-Cyhalothrin, Permethrin and Prodiamine | Notice | 2013-11-29T05:00:00Z | 2013 | 11 | 2013-11-29T05:00:00Z | 2013-12-31T04:59:59Z | 2013-11-29T18:25:22Z | 2013-28675 | 0 | 0 | 090000648149f2ec | |
| EPA-HQ-OPP-2009-1017-0046 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2013-11-20T05:00:00Z | 2013 | 11 | 2013-11-20T05:00:00Z | 2013-12-21T04:59:59Z | 2013-11-20T16:29:11Z | 2013-27823 | 0 | 0 | 090000648148bb1b | |
| EPA-HQ-OPP-2009-1017-0045 | EPA | None EPA-HQ-OPP-2009-1017 | Pesticide Registrations: Product Cancellation Orders | Notice | 2013-10-30T04:00:00Z | 2013 | 10 | 2013-10-30T04:00:00Z | 2013-10-30T14:22:06Z | 2013-25593 | 0 | 0 | 0900006481466e24 | ||
| EPA-HQ-OPP-2009-1017-0044 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2013-09-20T04:00:00Z | 2013 | 9 | 2013-09-20T04:00:00Z | 2013-09-20T21:36:25Z | 2013-22847 | 0 | 0 | 090000648142dbdb | ||
| EPA-HQ-OPP-2009-1017-0043 | EPA | None EPA-HQ-OPP-2009-1017 | Pesticide Registrations: Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2013-08-21T04:00:00Z | 2013 | 8 | 2013-08-21T04:00:00Z | 2013-09-21T03:59:59Z | 2013-08-21T15:41:25Z | 2013-20406 | 0 | 0 | 09000064813bcdb2 | |
| EPA-HQ-OPP-2009-1017-0040 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2013-06-12T04:00:00Z | 2013 | 6 | 2013-06-12T04:00:00Z | 2013-07-13T03:59:59Z | 2014-05-03T23:58:54Z | 2013-13978 | 0 | 0 | 090000648131ae6c | |
| EPA-HQ-OPP-2009-1017-0039 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Orders for Certain Pesticide Registrations | Notice | 2013-05-01T04:00:00Z | 2013 | 5 | 2013-05-01T04:00:00Z | 2013-05-01T14:02:40Z | 2013-10188 | 0 | 0 | 09000064812af874 | ||
| EPA-HQ-OPP-2009-1017-0037 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2013-02-20T05:00:00Z | 2013 | 2 | 2013-02-20T05:00:00Z | 2013-02-20T15:41:25Z | 2013-03843 | 0 | 0 | 09000064811fe2a2 | ||
| EPA-HQ-OPP-2009-1017-0038 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2013-02-20T05:00:00Z | 2013 | 2 | 2013-02-20T05:00:00Z | 2013-03-23T03:59:59Z | 2013-02-20T15:47:17Z | 2013-03844 | 0 | 0 | 09000064811fe4de |
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;