documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "EPA-HQ-OPP-2012-0739" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2012-0739-0022 | EPA | None EPA-HQ-OPP-2012-0739 | Cover Transmittal Letter and the Fish and Wildlife Services Final Biological Opinion for the proposed use of Kaput®-D (Kaput®-D) Prairie Dog Bait, | Supporting & Related Material | Letter | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:26:37Z | 0 | 0 | 090000648118d129 | |||
| EPA-HQ-OPP-2012-0739-0017 | EPA | None EPA-HQ-OPP-2012-0739 | Kaput D Registration Notice-Scimetrics Ltd. Corp. | Supporting & Related Material | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T21:31:39Z | 0 | 0 | 0900006481150fbe | ||||
| EPA-HQ-OPP-2012-0739-0015 | EPA | None EPA-HQ-OPP-2012-0739 | Kaput D Final Decision Document | Supporting & Related Material | Report | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T21:31:20Z | 0 | 0 | 0900006481150f55 | |||
| EPA-HQ-OPP-2012-0739-0021 | EPA | None EPA-HQ-OPP-2012-0739 | Scimetrics Request Letters | Supporting & Related Material | Letter | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T21:32:08Z | 0 | 0 | 090000648115279e | |||
| EPA-HQ-OPP-2012-0739-0020 | EPA | None EPA-HQ-OPP-2012-0739 | Letter Initiating Consultation | Supporting & Related Material | Report | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T21:31:58Z | 0 | 0 | 090000648115279d | |||
| EPA-HQ-OPP-2012-0739-0016 | EPA | None EPA-HQ-OPP-2012-0739 | Kaput D Label | Supporting & Related Material | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T21:31:29Z | 0 | 0 | 0900006481150fbd | ||||
| EPA-HQ-OPP-2012-0739-0019 | EPA | None EPA-HQ-OPP-2012-0739 | Conclusions Regarding the Pre-Biological Opinion Registration of Kaput-D | Supporting & Related Material | Memorandum | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T21:31:10Z | 0 | 0 | 0900006481150fc0 | |||
| EPA-HQ-OPP-2012-0739-0018 | EPA | None EPA-HQ-OPP-2012-0739 | Kaput D Response to Comments | Supporting & Related Material | Comment Response | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T21:31:48Z | 0 | 0 | 0900006481150fbf | |||
| EPA-HQ-OPP-2012-0739-0002 | EPA | None EPA-HQ-OPP-2012-0739 | Ecological Risk Assessment for the Section 3 New Use Registration of Diphacinone (PC 067701) For Use on Black-tailed Prairie Dogs (Cynomys ludovicianus) | Supporting & Related Material | Report | 2012-09-10T04:00:00Z | 2012 | 9 | 2012-09-10T19:24:01Z | 0 | 0 | 090000648110cd05 | |||
| EPA-HQ-OPP-2012-0739-0003 | EPA | None EPA-HQ-OPP-2012-0739 | Proposed Label | Supporting & Related Material | Report | 2012-09-10T04:00:00Z | 2012 | 9 | 2012-09-10T19:24:01Z | 0 | 0 | 090000648110cd06 | |||
| EPA-HQ-OPP-2012-0739-0004 | EPA | None EPA-HQ-OPP-2012-0739 | Proposed Decision to Register Kaput D Prairie Dog Bait | Supporting & Related Material | Report | 2012-09-10T04:00:00Z | 2012 | 9 | 2012-09-10T19:24:01Z | 0 | 0 | 090000648110e659 | |||
| EPA-HQ-OPP-2012-0739-0001 | EPA | None EPA-HQ-OPP-2012-0739 | Memorandum authorizing the posting of EPA-HQ-OPP-2012-0739 to Regulations.gov for public comment | Other | Memorandum to Open a Docket | 2012-09-10T04:00:00Z | 2012 | 9 | 2012-09-10T04:00:00Z | 2012-09-25T03:59:59Z | 2012-09-25T02:01:05Z | 0 | 0 | 090000648110ee99 |
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;