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-2017-0751" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-2017-0751-0037 | EPA | None EPA-HQ-OPP-2017-0751 | Pesticide Registration Review: Pesticide Dockets Opened for Review and Comment | Notice | 2024-10-28T04:00:00Z | 2024 | 10 | 2024-10-28T13:18:36Z | 2024-24947 | 0 | 0 | 09000064867e87c8 | |||
| EPA-HQ-OPP-2017-0751-0036 | EPA | None EPA-HQ-OPP-2017-0751 | Pesticide Registration Review: Decisions and Case Closures for Several Pesticides | Notice | 2024-07-15T04:00:00Z | 2024 | 7 | 2024-07-15T04:00:00Z | 2024-07-16T00:35:14Z | 2024-15476 | 0 | 0 | 09000064865ef864 | ||
| EPA-HQ-OPP-2017-0751-0035 | EPA | None EPA-HQ-OPP-2017-0751 | Pesticide Registration Review: Decisions for Several Pesticides | Notice | 2024-06-24T04:00:00Z | 2024 | 6 | 2024-06-24T04:00:00Z | 2024-06-24T15:48:33Z | 2024-13808 | 0 | 0 | 09000064865c52d8 | ||
| EPA-HQ-OPP-2017-0751-0034 | EPA | None EPA-HQ-OPP-2017-0751 | Pesticide Registration Review: Decisions for Several Pesticides | Notice | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T13:13:25Z | 2024-09768 | 0 | 0 | 09000064865425b9 | |||
| EPA-HQ-OPP-2017-0751-0033 | EPA | None EPA-HQ-OPP-2017-0751 | Pesticide Registration Review: Decisions for Several Pesticides; Correction | Notice | 2024-03-15T04:00:00Z | 2024 | 3 | 2024-03-15T04:00:00Z | 2024-03-16T03:59:59Z | 2024-03-24T00:43:33Z | 2024-05628 | 0 | 0 | 090000648647cdae | |
| EPA-HQ-OPP-2017-0751-0032 | EPA | None EPA-HQ-OPP-2017-0751 | Pesticide Registration Review: Decisions for Several Pesticides | Notice | 2024-03-07T05:00:00Z | 2024 | 3 | 2024-03-07T14:38:37Z | 2024-04828 | 0 | 0 | 0900006486468e39 |
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;