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-2010-0726" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 10
| 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-2010-0726-0010 | EPA | None EPA-HQ-OPP-2010-0726 | Interim Registration Review Decisions and Case Closures for Several Pesticides | Notice | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T05:00:00Z | 2018-12-04T17:34:56Z | 2018-26354 | 0 | 0 | 090000648393c1e3 | ||
| EPA-HQ-OPP-2010-0726-0009 | EPA | None EPA-HQ-OPP-2010-0726 | Putrescent Whole Egg Solids Interim Registration Review Decision Case Number 4079 | Supporting & Related Material | Decision | 2018-10-12T04:00:00Z | 2018 | 10 | 2018-10-12T22:49:23Z | 0 | 0 | 090000648376fdf7 | |||
| EPA-HQ-OPP-2010-0726-0007 | EPA | None EPA-HQ-OPP-2010-0726 | Registration Reviews: Proposed Interim Decisions for Several Pesticides | Notice | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T04:00:00Z | 2018-07-24T03:59:59Z | 2018-05-24T22:53:12Z | 2018-11193 | 0 | 0 | 09000064832df425 | |
| EPA-HQ-OPP-2010-0726-0008 | EPA | None EPA-HQ-OPP-2010-0726 | Putrescent Whole Egg Solids Proposed Interim Decision Case Number 4079 | Supporting & Related Material | Decision | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T22:07:26Z | 0 | 0 | 0900006483093d8e | |||
| EPA-HQ-OPP-2010-0726-0004 | EPA | None EPA-HQ-OPP-2010-0726 | Preliminary Human Health Assessment for the Registration Review of Putrescent Whole Egg Solids | Supporting & Related Material | Other | 2011-04-04T04:00:00Z | 2011 | 4 | 2011-04-04T15:36:53Z | 0 | 0 | 0900006480c0afcd | |||
| EPA-HQ-OPP-2010-0726-0006 | EPA | None EPA-HQ-OPP-2010-0726 | Ecotoxicity Assessment for Putrescent Egg Solids Registration Review | Supporting & Related Material | Other | 2011-04-04T04:00:00Z | 2011 | 4 | 2011-04-04T15:36:58Z | 0 | 0 | 0900006480c0aff3 | |||
| EPA-HQ-OPP-2010-0726-0005 | EPA | None EPA-HQ-OPP-2010-0726 | Chemistry Scoping Document for the Registration Review of Putrescent Whole Egg Solids | Supporting & Related Material | Other | 2011-04-04T04:00:00Z | 2011 | 4 | 2011-04-04T15:36:56Z | 0 | 0 | 0900006480c0afce | |||
| EPA-HQ-OPP-2010-0726-0003 | EPA | None EPA-HQ-OPP-2010-0726 | Putrescent Whole Egg Solids Final Work Plan | Supporting & Related Material | Other | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T20:16:27Z | 0 | 0 | 0900006480c0aff9 | |||
| EPA-HQ-OPP-2010-0726-0002 | EPA | None EPA-HQ-OPP-2010-0726 | Putrescent Whole Egg Solids Registration Review: Initial Docket | Supporting & Related Material | Technical Support Document | 2010-09-29T04:00:00Z | 2010 | 9 | 2010-09-29T14:15:26Z | 0 | 0 | 0900006480b5cf4b | |||
| EPA-HQ-OPP-2010-0726-0001 | EPA | None EPA-HQ-OPP-2010-0726 | Registration Reviews: Biopesticides Dockets Opened for Review and Comment | Notice | Federal Register Document | 2010-09-29T04:00:00Z | 2010 | 9 | 2010-09-29T04:00:00Z | 2010-11-30T04:59:59Z | 2010-09-29T14:15:24Z | 2010-24436 | 0 | 0 | 0900006480b63228 |
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;