documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2008-0654" 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), 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-2008-0654-0074 | EPA | None EPA-HQ-OPP-2008-0654 | 10/6/09 - Registrants’ Response to EPA’s Implementation of Biological Opinion on PNW Salmonids for Diazinon, Chlorpyrifos, and Malathion | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-09T15:39:29Z | 0 | 0 | 0900006480a6838c | ||||
| EPA-HQ-OPP-2008-0654-0073 | EPA | None EPA-HQ-OPP-2008-0654 | 9/30/09 - NMFS Response to EPA’s Implementation of Biological Opinion on PNW Salmonids for Diazinon, Chlorpyrifos, and Malathion | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-09T15:39:28Z | 0 | 0 | 0900006480a6838a | ||||
| EPA-HQ-OPP-2008-0654-0072 | EPA | None EPA-HQ-OPP-2008-0654 | 9/10/09 - EPA Response to NMFS’ Biological Opinion on PNW Salmonids for Diazinon, Chlorpyrifos, and Malathion | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-09T15:39:28Z | 0 | 0 | 0900006480a68389 | ||||
| EPA-HQ-OPP-2008-0654-0075 | EPA | None EPA-HQ-OPP-2008-0654 | 11/16/09 - EPA Response to Registrants for Diazinon, Chlorpyrifos, and Malathion RE: EPA’s Implementation of Biological Opinion on PNW Salmonids | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-09T15:39:29Z | 0 | 0 | 0900006480a6838d | ||||
| EPA-HQ-OPP-2008-0654-0067 | EPA | None EPA-HQ-OPP-2008-0654 | EPA response to NMFS March 18, 2009 Draft Biological Opinion on Carbaryl, Carbofuran, and Methomyl | Supporting & Related Material | 2009-05-19T04:00:00Z | 2009 | 5 | 2010-07-09T15:39:20Z | 0 | 0 | 0900006480951b97 | ||||
| EPA-HQ-OPP-2008-0654-0033 | EPA | None EPA-HQ-OPP-2008-0654 | Draft Biological Opinion issued under the Endangered Species Act, by the National Marine Fisheries Service, Related to Carbaryl, Carbofuran, and Methomyl, and Pacific Salmon and Steelhead Species | Supporting & Related Material | 2009-03-26T04:00:00Z | 2009 | 3 | 2010-07-09T15:39:19Z | 0 | 0 | 090000648092bc05 | ||||
| EPA-HQ-OPP-2008-0654-0032 | EPA | None EPA-HQ-OPP-2008-0654 | EPA response to NMFS July 31, 2008 Draft Biological Opinion on Chlorpyrifos, Diazinon, and Malathion | Supporting & Related Material | 2009-03-26T04:00:00Z | 2009 | 3 | 2010-07-09T15:39:12Z | 0 | 0 | 0900006480709244 | ||||
| EPA-HQ-OPP-2008-0654-0030 | EPA | None EPA-HQ-OPP-2008-0654 | Agenda for Applicant Meeting with NMFS - 8.29.08 | Supporting & Related Material | 2009-03-24T04:00:00Z | 2009 | 3 | 2010-07-09T15:39:09Z | 0 | 0 | 09000064806f897c | ||||
| EPA-HQ-OPP-2008-0654-0031 | EPA | None EPA-HQ-OPP-2008-0654 | NMFS Presentation Slides for Applicant Meeting re: Biological Opinion on Chlorpyrifos, Diazinon and Malathion | Supporting & Related Material | 2009-03-24T04:00:00Z | 2009 | 3 | 2010-07-09T15:39:09Z | 0 | 0 | 09000064806ff70c |
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;