documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2009-0191" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-0191-0011 | EPA | None EPA-HQ-OPP-2009-0191 | Product Cancellation Order and Amendments to Terminate Uses: Organic Arsenicals | Notice | Federal Register Document | 2009-09-30T04:00:00Z | 2009 | 9 | 2009-09-30T04:00:00Z | 2010-12-28T17:41:51Z | E9-23319 | 0 | 0 | 0900006480a31a53 | |
| EPA-HQ-OPP-2009-0191-0006 | EPA | None EPA-HQ-OPP-2009-0191 | Organic Arsenicals; Notice of Receipt of Requests to Voluntarily Cancel or to Amend to Terminate Uses of Certain Pesticide Registrations | Notice | Federal Register Document | 2009-07-08T04:00:00Z | 2009 | 7 | 2009-07-08T04:00:00Z | 2009-08-08T03:59:59Z | 2010-12-28T17:41:51Z | E9-16054 | 0 | 0 | 09000064809ec286 |
| EPA-HQ-OPP-2009-0191-0005 | EPA | None EPA-HQ-OPP-2009-0191 | 2/5/09 - Agreement in Principle to Implement the Organic Arsenicals Reregistration Eligibility Decision (RED) between EPA and Albaugh Inc. | Supporting & Related Material | 2009-06-02T04:00:00Z | 2009 | 6 | 2010-12-28T17:41:51Z | 0 | 0 | 090000648099c82e | ||||
| EPA-HQ-OPP-2009-0191-0004 | EPA | None EPA-HQ-OPP-2009-0191 | 1/16/09 - Agreement in Principle to Implement the Organic Arsenicals Reregistration Eligibility Decision (RED) between EPA and the MAA Research Task Force | Supporting & Related Material | 2009-06-02T04:00:00Z | 2009 | 6 | 2010-12-28T17:41:51Z | 0 | 0 | 090000648099c82d | ||||
| EPA-HQ-OPP-2009-0191-0003 | EPA | None EPA-HQ-OPP-2009-0191 | Amendment Clarification Letter - 5/8/2009 | Supporting & Related Material | 2009-05-15T04:00:00Z | 2009 | 5 | 2010-12-28T17:41:50Z | 0 | 0 | 090000648098c279 | ||||
| EPA-HQ-OPP-2009-0191-0002 | EPA | None EPA-HQ-OPP-2009-0191 | 4/28/09 - Admendment to Organic Arsenicals RED | Supporting & Related Material | 2009-05-06T04:00:00Z | 2009 | 5 | 2010-12-28T17:41:50Z | 0 | 0 | 090000648096e574 | ||||
| EPA-HQ-OPP-2009-0191-0001 | EPA | None EPA-HQ-OPP-2009-0191 | Organic Arsenicals: Amendment to Reregistration Eligibility Decision | Notice | Federal Register Document | 2009-05-06T04:00:00Z | 2009 | 5 | 2009-05-06T04:00:00Z | 2010-12-28T17:41:50Z | E9-10330 | 0 | 0 | 0900006480979338 |
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;