documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "EPA", docket_id = "EPA-HQ-OPP-2010-0014" and posted_year = 2013 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-0044 | EPA | None EPA-HQ-OPP-2010-0014 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2013-12-04T05:00:00Z | 2013 | 12 | 2013-12-04T05:00:00Z | 2014-06-03T03:59:59Z | 2014-05-13T14:36:51Z | 2013-28941 | 0 | 0 | 09000064814a6368 | |
| EPA-HQ-OPP-2010-0014-0042 | EPA | None EPA-HQ-OPP-2010-0014 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2013-09-25T04:00:00Z | 2013 | 9 | 2013-09-25T04:00:00Z | 2013-09-25T16:14:06Z | 2013-23392 | 0 | 0 | 0900006481439392 | ||
| EPA-HQ-OPP-2010-0014-0041 | EPA | None EPA-HQ-OPP-2010-0014 | Pesticide Registrations: Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2013-08-28T04:00:00Z | 2013 | 8 | 2013-08-28T04:00:00Z | 2014-02-25T04:59:59Z | 2013-10-29T01:02:21Z | 2013-21021 | 0 | 0 | 09000064813c9752 | |
| EPA-HQ-OPP-2010-0014-0040 | EPA | None EPA-HQ-OPP-2010-0014 | Product Cancellation Order for Certain Pesticide Registrations; Correction | Notice | 2013-07-31T04:00:00Z | 2013 | 7 | 2013-07-31T04:00:00Z | 2013-07-31T16:40:55Z | 2013-18179 | 0 | 0 | 090000648138731f | ||
| EPA-HQ-OPP-2010-0014-0039 | EPA | None EPA-HQ-OPP-2010-0014 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T04:00:00Z | 2013-06-26T14:47:40Z | 2013-15320 | 0 | 0 | 0900006481341573 | ||
| EPA-HQ-OPP-2010-0014-0037 | EPA | None EPA-HQ-OPP-2010-0014 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2013-06-12T04:00:00Z | 2013 | 6 | 2013-06-12T04:00:00Z | 2013-12-10T04:59:59Z | 2013-12-12T02:01:34Z | 2013-13817 | 0 | 0 | 090000648131aeed | |
| EPA-HQ-OPP-2010-0014-0036 | EPA | None EPA-HQ-OPP-2010-0014 | Product Cancellation Order for Certain Pesticide Registrations | Notice | 2013-04-24T04:00:00Z | 2013 | 4 | 2013-04-24T04:00:00Z | 2013-04-24T13:22:33Z | 2013-09553 | 0 | 0 | 09000064812a560e | ||
| EPA-HQ-OPP-2010-0014-0035 | EPA | None EPA-HQ-OPP-2010-0014 | Pyridaben Meeting Nissan-Canyon-EPA-Meeting Highlights | Supporting & Related Material | Meeting Materials | 2013-04-12T04:00:00Z | 2013 | 4 | 2013-04-12T20:16:49Z | 0 | 0 | 090000648128a174 | |||
| EPA-HQ-OPP-2010-0014-0034 | EPA | None EPA-HQ-OPP-2010-0014 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2013-02-22T05:00:00Z | 2013 | 2 | 2013-02-22T05:00:00Z | 2013-08-22T03:59:59Z | 2013-06-13T01:01:59Z | 2013-04031 | 0 | 0 | 0900006481203375 | |
| EPA-HQ-OPP-2010-0014-0033 | EPA | None EPA-HQ-OPP-2010-0014 | Product Cancellation Orders for Certain Pesticide Registrations | Notice | 2013-02-06T05:00:00Z | 2013 | 2 | 2013-02-06T05:00:00Z | 2013-02-06T15:06:45Z | 2013-02698 | 0 | 0 | 09000064811e8900 |
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;