documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2023-0074" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-2023-0074-0009 | EPA | None EPA-HQ-OPP-2023-0074 | Cancellation Order: Certain Pesticide Registrations and Amendments to Terminate Uses | Notice | 2024-02-23T05:00:00Z | 2024 | 2 | 2024-02-23T05:00:00Z | 2024-02-23T16:11:46Z | 2024-03729 | 0 | 0 | 09000064864295be | ||
| EPA-HQ-OPP-2023-0074-0007 | EPA | None EPA-HQ-OPP-2023-0074 | Pesticides; Flexible Packaging; Child Resistant Packaging Requirements | Notice | 2024-02-08T05:00:00Z | 2024 | 2 | 2024-02-08T05:00:00Z | 2024-02-08T17:48:42Z | 2024-02587 | 0 | 0 | 09000064863f3a4c | ||
| EPA-HQ-OPP-2023-0074-0008 | EPA | None EPA-HQ-OPP-2023-0074 | Cancellation Order for Certain Pesticide Registrations and Amendments to Terminate Uses | Notice | 2024-02-08T05:00:00Z | 2024 | 2 | 2024-02-08T05:00:00Z | 2024-02-08T18:03:01Z | C1-2023-28547 | 0 | 0 | 09000064863f3c13 | ||
| EPA-HQ-OPP-2023-0074-0006 | EPA | None EPA-HQ-OPP-2023-0074 | Cancellation Order for Certain Pesticide Registrations and Amendments to Terminate Uses | Notice | 2023-12-27T05:00:00Z | 2023 | 12 | 2023-12-27T05:00:00Z | 2023-12-27T21:20:01Z | 2023-28547 | 0 | 0 | 090000648635c583 | ||
| EPA-HQ-OPP-2023-0074-0005 | EPA | None EPA-HQ-OPP-2023-0074 | Receipt of Requests to Voluntarily Cancel Certain Pesticide Registrations and Amend Registrations to Terminate Certain Uses | Notice | 2023-10-16T04:00:00Z | 2023 | 10 | 2023-10-16T04:00:00Z | 2023-11-16T04:59:59Z | 2023-10-16T15:24:11Z | 2023-22707 | 0 | 0 | 09000064860eb31e | |
| EPA-HQ-OPP-2023-0074-0004 | EPA | None EPA-HQ-OPP-2023-0074 | Cancellation Order for Certain Pesticide Registrations and Amendments to Terminate Uses | Notice | 2023-08-30T04:00:00Z | 2023 | 8 | 2023-08-30T04:00:00Z | 2023-08-30T16:19:36Z | 2023-18725 | 0 | 0 | 0900006485f1116b | ||
| EPA-HQ-OPP-2023-0074-0003 | EPA | None EPA-HQ-OPP-2023-0074 | Requests to Voluntarily Cancel Certain Pesticide Registrations and Amend Registrations to Terminate Certain Uses | Notice | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-28T04:00:00Z | 2023-08-29T03:59:59Z | 2023-07-28T14:53:47Z | 2023-16047 | 0 | 0 | 0900006485d6ac31 | |
| EPA-HQ-OPP-2023-0074-0001 | EPA | None EPA-HQ-OPP-2023-0074 | Requests to Voluntarily Cancel Certain Pesticide Registrations and Amend Registrations to Terminate Certain Uses | Notice | 2023-03-10T05:00:00Z | 2023 | 3 | 2023-03-10T05:00:00Z | 2023-04-11T03:59:59Z | 2023-03-12T01:37:00Z | 2023-04873 | 0 | 0 | 090000648578b48d |
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;