documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "EPA-HQ-OPP-2021-0083" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_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-0083-0012 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Applications for New Active Ingredients, November 2022 | Notice | 2023-01-04T05:00:00Z | 2023 | 1 | 2023-01-04T15:20:17Z | 2022-28556 | 0 | 0 | 090000648558061b | |||
| EPA-HQ-OPP-2021-0083-0011 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Applications for New Active Ingredients | Notice | 2022-11-18T05:00:00Z | 2022 | 11 | 2022-11-18T16:46:56Z | 2022-25133 | 0 | 0 | 09000064854d0413 | |||
| EPA-HQ-OPP-2021-0083-0010 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Applications for New Active Ingredients (August 2022) | Notice | 2022-09-20T04:00:00Z | 2022 | 9 | 2022-09-20T04:00:00Z | 2022-09-20T14:11:12Z | 2022-20327 | 0 | 0 | 09000064853361f7 | ||
| EPA-HQ-OPP-2021-0083-0009 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Receipt of Applications for New Active Ingredients-December 2021 | Notice | Notice of Receipt of Petition | 2021-12-17T05:00:00Z | 2021 | 12 | 2021-12-17T14:28:30Z | 2021-27301 | 0 | 0 | 0900006484ed1e65 | ||
| EPA-HQ-OPP-2021-0083-0008 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Receipt of Applications for New Active Ingredients (October 2021) | Notice | 2021-10-29T04:00:00Z | 2021 | 10 | 2021-10-29T13:21:38Z | 2021-23529 | 0 | 0 | 0900006484dff9fb | |||
| EPA-HQ-OPP-2021-0083-0007 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Receipt of Applications for New Active Ingredients (September 2021) | Notice | 2021-09-21T04:00:00Z | 2021 | 9 | 2021-09-21T19:56:48Z | 2021-20415 | 0 | 0 | 0900006484d98dc1 | |||
| EPA-HQ-OPP-2021-0083-0006 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Receipt of Applications for New Active Ingredients-August 2021 | Notice | 2021-08-27T04:00:00Z | 2021 | 8 | 2021-08-27T14:56:58Z | 2021-18488 | 0 | 0 | 0900006484cabde8 | |||
| EPA-HQ-OPP-2021-0083-0005 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Receipt of Applications for New Active Ingredients (July 2021) | Notice | 2021-08-13T04:00:00Z | 2021 | 8 | 2021-08-13T16:33:54Z | 2021-17380 | 0 | 0 | 0900006484c50089 | |||
| EPA-HQ-OPP-2021-0083-0004 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Applications for New Active Ingredients June 2021 | Notice | 2021-06-21T04:00:00Z | 2021 | 6 | 2021-06-21T15:38:34Z | 2021-13065 | 0 | 0 | 0900006484b9b1ca | |||
| EPA-HQ-OPP-2021-0083-0003 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Receipt of Applications for New Active Ingredients; May 2021 | Notice | 2021-05-28T04:00:00Z | 2021 | 5 | 2021-05-28T15:56:32Z | 2021-11380 | 0 | 0 | 0900006484b404e6 | |||
| EPA-HQ-OPP-2021-0083-0002 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Applications for New Active Ingredients, April 2021 | Notice | 2021-04-21T04:00:00Z | 2021 | 4 | 2021-04-21T18:12:43Z | 2021-08256 | 0 | 0 | 0900006484ab0be1 | |||
| EPA-HQ-OPP-2021-0083-0001 | EPA | None EPA-HQ-OPP-2021-0083 | Pesticide Product Registration: Receipt of Applications for New Active Ingredients (March 2021) | Notice | 2021-03-24T04:00:00Z | 2021 | 3 | 2021-03-24T22:47:14Z | 2021-06078 | 0 | 0 | 0900006484a76e79 |
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;