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-0925" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0925-0010 | EPA | None EPA-HQ-OPP-2010-0925 | Interim Registration Review Decisions and Case Closures for Several Pesticides | Notice | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T04:00:00Z | 2019-03-18T20:52:38Z | 2019-04970 | 0 | 0 | 0900006483afc613 | ||
| EPA-HQ-OPP-2010-0925-0009 | EPA | None EPA-HQ-OPP-2010-0925 | (Z)-9-tricosene (Muscalure) Interim Registration Review Decision Case 4112 | Supporting & Related Material | Decision | 2018-12-20T05:00:00Z | 2018 | 12 | 2018-12-20T21:26:01Z | 0 | 0 | 09000064839748e3 | |||
| EPA-HQ-OPP-2010-0925-0008 | EPA | None EPA-HQ-OPP-2010-0925 | (Z)-9-tricosene (Muscalure) Proposed Interim Registration Review Decision Case Number 4112 | Supporting & Related Material | Decision | 2018-08-08T04:00:00Z | 2018 | 8 | 2018-08-08T19:10:34Z | 0 | 0 | 0900006483471ad8 | |||
| EPA-HQ-OPP-2010-0925-0007 | EPA | None EPA-HQ-OPP-2010-0925 | Registration Review Proposed Interim Decisions for Several Pesticides | Notice | 2018-08-08T04:00:00Z | 2018 | 8 | 2018-08-08T04:00:00Z | 2018-10-10T03:59:59Z | 2018-08-08T19:09:50Z | 2018-16988 | 0 | 0 | 09000064835f3d85 | |
| EPA-HQ-OPP-2010-0925-0006 | EPA | None EPA-HQ-OPP-2010-0925 | Revised risk assessment for (Z)-9-tricosene (Muscalure) registration review | Supporting & Related Material | Environmental Assessment | 2011-06-30T04:00:00Z | 2011 | 6 | 2011-06-30T21:18:44Z | 0 | 0 | 0900006480e9ba43 | |||
| EPA-HQ-OPP-2010-0925-0005 | EPA | None EPA-HQ-OPP-2010-0925 | (Z)-9-tricosene (Muscalure) Final Work Plan 30June2011 | Supporting & Related Material | Work Plan | 2011-06-30T04:00:00Z | 2011 | 6 | 2011-06-30T20:09:19Z | 0 | 0 | 0900006480eb76b1 | |||
| EPA-HQ-OPP-2010-0925-0001 | EPA | None EPA-HQ-OPP-2010-0925 | Registration Review: Pesticide and Other Docket Actions | Notice | Federal Register Document | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T05:00:00Z | 2011-02-23T04:59:59Z | 2011-01-05T16:31:43Z | 2010-32152 | 0 | 0 | 0900006480bbdf7b |
| EPA-HQ-OPP-2010-0925-0002 | EPA | None EPA-HQ-OPP-2010-0925 | Registration Review: (Z)-9-tricosene Preliminary Work Plan and Summary Document 21December2010 | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T20:59:36Z | 0 | 0 | 0900006480bbd041 | |||
| EPA-HQ-OPP-2010-0925-0003 | EPA | None EPA-HQ-OPP-2010-0925 | Risk assessment for registration review of (Z)-9-tricosene | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T20:59:39Z | 0 | 0 | 0900006480bbd090 | |||
| EPA-HQ-OPP-2010-0925-0004 | EPA | None EPA-HQ-OPP-2010-0925 | Risk assessment for registration review of (Z)-9-tricosene | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T20:59:40Z | 0 | 0 | 0900006480bbd091 |
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;