documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2004-0415" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2004-0415-0001 | EPA | None EPA-HQ-OPP-2004-0415 | Pesticides; Data Requirements for Biochemical and Microbial Pesticides; Notification to the Secretary of Agriculture | Notice | Federal Register Document | 2005-10-21T20:41:38Z | 2005 | 10 | 2008-01-08T21:18:18Z | 61242 | 0 | 0 | 09000064800b9a23 | ||
| EPA-HQ-OPP-2004-0415-0011 | EPA | None EPA-HQ-OPP-2004-0415 | OECD Guidance: Pheromones and Other Semiochemicals | Supporting & Related Material | Other | 2005-05-27T15:09:28Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800ba404 | |||
| EPA-HQ-OPP-2004-0415-0012 | EPA | None EPA-HQ-OPP-2004-0415 | OECD Guidance: Dossiers for Microbials and Pheromones) | Supporting & Related Material | Other | 2005-05-27T15:09:00Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800ba40d | |||
| EPA-HQ-OPP-2004-0415-0008 | EPA | None EPA-HQ-OPP-2004-0415 | Excerpts from "Pesticides in the Diets of Infants and Children" | Supporting & Related Material | Other | 2005-05-26T21:46:20Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800ba055 | |||
| EPA-HQ-OPP-2004-0415-0009 | EPA | None EPA-HQ-OPP-2004-0415 | 1989 Pesticide Testing Guidelines, Subdivision M | Supporting & Related Material | Other | 2005-05-26T15:25:05Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800ba05e | |||
| EPA-HQ-OPP-2004-0415-0010 | EPA | None EPA-HQ-OPP-2004-0415 | 1996 SAP Review: Set of Issues to be Considered | Supporting & Related Material | Other | 2005-05-26T15:22:04Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800ba322 | |||
| EPA-HQ-OPP-2004-0415-0003 | EPA | None EPA-HQ-OPP-2004-0415 | 1982 Pesticide Assessment Guidelines: Subdivision M, Biorational Pesticides | Supporting & Related Material | Other | 2005-05-26T15:20:48Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800b9a54 | |||
| EPA-HQ-OPP-2004-0415-0004 | EPA | None EPA-HQ-OPP-2004-0415 | 1994 SAP Review: Final Report | Supporting & Related Material | Other | 2005-05-26T15:05:38Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800b9f07 | |||
| EPA-HQ-OPP-2004-0415-0006 | EPA | None EPA-HQ-OPP-2004-0415 | 1987 SAP Review: Set of Issues to be Considered Related to Biochemical Pest Control Agents | Supporting & Related Material | Other | 2005-05-26T15:05:13Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800ba022 | |||
| EPA-HQ-OPP-2004-0415-0005 | EPA | None EPA-HQ-OPP-2004-0415 | 1994 SAP Review: Subpart M | Supporting & Related Material | Other | 2005-05-26T15:03:59Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800b9f7b | |||
| EPA-HQ-OPP-2004-0415-0007 | EPA | None EPA-HQ-OPP-2004-0415 | 1994 SAP Review: Summary of Information to Review | Supporting & Related Material | Other | 2005-05-26T15:03:19Z | 2005 | 5 | 2006-09-02T14:13:06Z | 0 | 0 | 09000064800ba038 |
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;