documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPP-2015-0288" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2015-0288-0048 | EPA | None EPA-HQ-OPP-2015-0288 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2021-10-22T04:00:00Z | 2021 | 10 | 2021-10-22T04:00:00Z | 2021-12-22T04:59:59Z | 2021-12-22T02:00:13Z | 2021-23043 | 0 | 0 | 0900006484de364e | |
| EPA-HQ-OPP-2015-0288-0051 | EPA | None EPA-HQ-OPP-2015-0288 | Cycloate: Response to Comments on the EFED Drinking Water Assessment and Draft Ecological Risk Assessment for Registration Review | Supporting & Related Material | Comment Response | 2021-10-22T04:00:00Z | 2021 | 10 | 2021-10-25T15:10:01Z | 0 | 0 | 0900006484db6a8c | |||
| EPA-HQ-OPP-2015-0288-0049 | EPA | None EPA-HQ-OPP-2015-0288 | Registrant Mitigation Meeting Agenda and Summary | Supporting & Related Material | Meeting Materials | 2021-10-22T04:00:00Z | 2021 | 10 | 2021-10-25T15:09:49Z | 0 | 0 | 0900006484db6a8a | |||
| EPA-HQ-OPP-2015-0288-0052 | EPA | None EPA-HQ-OPP-2015-0288 | Cycloate Proposed Interim Registration Review Decision Case Number 2125 | Supporting & Related Material | Decision | 2021-10-22T04:00:00Z | 2021 | 10 | 2021-10-25T15:10:08Z | 0 | 0 | 0900006484db6a8d | |||
| EPA-HQ-OPP-2015-0288-0053 | EPA | None EPA-HQ-OPP-2015-0288 | Cycloate: Addendum to Human Health Draft Risk Assessment for Registration Review | Supporting & Related Material | Risk Assessment | 2021-10-22T04:00:00Z | 2021 | 10 | 2021-10-25T15:10:15Z | 0 | 0 | 0900006484db6a8e | |||
| EPA-HQ-OPP-2015-0288-0050 | EPA | None EPA-HQ-OPP-2015-0288 | Cycloate (041301): BEAD Analysis of Use, Usage and Benefits with a Discussion of Impacts from Possible Mitigation | Supporting & Related Material | Analysis | 2021-10-22T04:00:00Z | 2021 | 10 | 2021-10-25T15:09:55Z | 0 | 0 | 0900006484db6a8b |
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;