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-2021-0513" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2021-0513-0008 | EPA | None EPA-HQ-OPP-2021-0513 | Cancellation Order for Certain Pesticide Registrations and Amendments to Terminate Uses | Notice | 2022-05-11T04:00:00Z | 2022 | 5 | 2022-05-11T04:00:00Z | 2022-05-11T20:07:39Z | 2022-10042 | 0 | 0 | 090000648506ee90 | ||
| EPA-HQ-OPP-2021-0513-0007 | EPA | None EPA-HQ-OPP-2021-0513 | Cancellation Order for Certain Pesticide Registrations and Amendments To Terminate Uses | Notice | 2022-03-01T05:00:00Z | 2022 | 3 | 2022-03-01T05:00:00Z | 2022-03-01T17:56:59Z | 2022-04232 | 0 | 0 | 0900006484fb0829 | ||
| EPA-HQ-OPP-2021-0513-0006 | EPA | None EPA-HQ-OPP-2021-0513 | Receipt of Requests To Voluntarily Cancel Certain Pesticide Registrations and Amend Registrations To Terminate Certain Uses | Notice | 2022-02-01T05:00:00Z | 2022 | 2 | 2022-02-01T05:00:00Z | 2022-03-04T04:59:59Z | 2022-02-01T17:21:29Z | 2022-01989 | 0 | 0 | 0900006484f4a8fc | |
| EPA-HQ-OPP-2021-0513-0003 | EPA | None EPA-HQ-OPP-2021-0513 | Cancellation Order for Certain Pesticide Registrations and Amendments to Terminate Uses | Notice | 2021-11-15T05:00:00Z | 2021 | 11 | 2021-11-15T05:00:00Z | 2021-11-15T15:09:00Z | 2021-24800 | 0 | 0 | 0900006484e4bf34 | ||
| EPA-HQ-OPP-2021-0513-0002 | EPA | None EPA-HQ-OPP-2021-0513 | Receipt of Requests to Voluntarily CancelCertain Pesticide Registrations and Amend Registrations to Terminate Certain Uses | Notice | 2021-10-25T04:00:00Z | 2021 | 10 | 2021-10-25T04:00:00Z | 2021-11-25T04:59:59Z | 2021-11-24T02:02:26Z | 2021-23178 | 0 | 0 | 0900006484df1875 | |
| EPA-HQ-OPP-2021-0513-0001 | EPA | None EPA-HQ-OPP-2021-0513 | Receipt of Requests to Voluntarily Cancel Certain Pesticide Registrations and Amend Registrations to Terminate Certain Uses | Notice | 2021-09-02T04:00:00Z | 2021 | 9 | 2021-09-02T04:00:00Z | 2021-10-05T03:59:59Z | 2021-09-02T14:13:19Z | 2021-19002 | 0 | 0 | 0900006484d4364f |
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;