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 = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, 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-0014 | EPA | None EPA-HQ-OPP-2009-1017 | Request to Withdraw Cancellation of Sodium Tetrathiocarbonate Products, | Supporting & Related Material | Other | 2010-12-28T05:00:00Z | 2010 | 12 | 2010-12-28T18:09:22Z | 0 | 0 | 0900006480bc1569 | |||
| EPA-HQ-OPP-2009-1017-0011 | EPA | None EPA-HQ-OPP-2009-1017 | Cancellation Orders for Certain Pesticide Registrations: Ethofumesate and Monosodium Methanearsonate; Correction | Notice | Federal Register Document | 2010-12-13T05:00:00Z | 2010 | 12 | 2010-12-13T05:00:00Z | 2011-01-03T21:18:45Z | C1-2010-31212 | 0 | 0 | 0900006480bb4f3e | |
| EPA-HQ-OPP-2009-1017-0010 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | Federal Register Document | 2010-11-10T05:00:00Z | 2010 | 11 | 2010-11-10T05:00:00Z | 2010-12-11T04:59:59Z | 2010-12-13T20:58:28Z | 2010-28141 | 0 | 0 | 0900006480b861c0 |
| EPA-HQ-OPP-2009-1017-0009 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Orders for Certain Pesticide Registrations | Notice | 2010-09-15T04:00:00Z | 2010 | 9 | 2010-09-15T04:00:00Z | 2010-12-13T20:58:28Z | 2010-22993 | 0 | 0 | 0900006480b4f633 | ||
| EPA-HQ-OPP-2009-1017-0008 | EPA | None EPA-HQ-OPP-2009-1017 | Receipt of Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | Federal Register Document | 2010-08-04T04:00:00Z | 2010 | 8 | 2010-08-04T04:00:00Z | 2010-09-04T03:59:59Z | 2010-12-13T20:58:28Z | 2010-18898 | 0 | 0 | 0900006480b28d36 |
| EPA-HQ-OPP-2009-1017-0007 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Order for Certain Pesticide Registrations | Notice | Federal Register Document | 2010-07-30T04:00:00Z | 2010 | 7 | 2010-07-30T04:00:00Z | 2010-12-13T20:58:28Z | 2010-18773 | 0 | 0 | 0900006480b24792 | |
| EPA-HQ-OPP-2009-1017-0005 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Order for Certain Pesticide Registrations; Correction | Notice | 2010-06-16T04:00:00Z | 2010 | 6 | 2010-06-16T04:00:00Z | 2010-12-13T20:58:28Z | 2010-14519 | 0 | 0 | 0900006480b02b76 | ||
| EPA-HQ-OPP-2009-1017-0004 | EPA | None EPA-HQ-OPP-2009-1017 | Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | 2010-06-16T04:00:00Z | 2010 | 6 | 2010-06-16T04:00:00Z | 2010-07-17T03:59:59Z | 2010-12-13T20:58:28Z | 2010-14518 | 0 | 0 | 0900006480b02bf4 | |
| EPA-HQ-OPP-2009-1017-0003 | EPA | None EPA-HQ-OPP-2009-1017 | Product Cancellation Order for Certain Pesticide Registrations | Notice | Federal Register Document | 2010-05-11T04:00:00Z | 2010 | 5 | 2010-05-11T04:00:00Z | 2010-12-13T20:58:27Z | 2010-11142 | 0 | 0 | 0900006480aeb16e | |
| EPA-HQ-OPP-2009-1017-0001 | EPA | None EPA-HQ-OPP-2009-1017 | Notice of Receipt of Requests to Voluntarily Cancel Certain Pesticide Registrations | Notice | Federal Register Document | 2010-02-03T05:00:00Z | 2010 | 2 | 2010-02-03T05:00:00Z | 2010-03-06T04:59:59Z | 2010-12-13T20:58:27Z | 2010-01583 | 0 | 0 | 0900006480a8c786 |
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;