documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPP-2021-0080" 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-0080-0010 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Receipt of Applications for New Uses-December 2021 | Notice | 2021-12-23T05:00:00Z | 2021 | 12 | 2021-12-23T14:53:38Z | 2021-27501 | 0 | 0 | 0900006484ee7ee2 | |||
| EPA-HQ-OPP-2021-0080-0009 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Applications for New Uses | Notice | 2021-11-24T05:00:00Z | 2021 | 11 | 2021-11-24T18:12:37Z | 2021-25604 | 0 | 0 | 0900006484e7ca6a | |||
| EPA-HQ-OPP-2021-0080-0008 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Receipt of Applications for New Uses (October 2021) | Notice | 2021-10-27T04:00:00Z | 2021 | 10 | 2021-10-27T19:10:49Z | 2021-23390 | 0 | 0 | 0900006484dfa546 | |||
| EPA-HQ-OPP-2021-0080-0007 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Receipt of Applications for New Uses (September 2021) | Notice | 2021-09-21T04:00:00Z | 2021 | 9 | 2021-09-23T00:44:09Z | 2021-20412 | 0 | 0 | 0900006484d98ee4 | |||
| EPA-HQ-OPP-2021-0080-0006 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Receipt of Applications for New Uses-August 2021 | Notice | 2021-08-31T04:00:00Z | 2021 | 8 | 2021-08-31T16:29:30Z | 2021-18719 | 0 | 0 | 0900006484cb501d | |||
| EPA-HQ-OPP-2021-0080-0005 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration; Applications: New Uses (July 2021) | Notice | 2021-08-12T04:00:00Z | 2021 | 8 | 2021-08-12T04:00:00Z | 2021-08-13T00:40:00Z | 2021-17188 | 0 | 0 | 0900006484c4bb70 | ||
| EPA-HQ-OPP-2021-0080-0004 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Applications for New Uses-June 2021 | Notice | 2021-06-23T04:00:00Z | 2021 | 6 | 2021-06-23T15:43:37Z | 2021-13187 | 0 | 0 | 0900006484ba44fd | |||
| EPA-HQ-OPP-2021-0080-0003 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Applications for New Uses-April 2021 | Notice | 2021-04-21T04:00:00Z | 2021 | 4 | 2021-04-21T17:48:49Z | 2021-08229 | 0 | 0 | 0900006484ab0a28 | |||
| EPA-HQ-OPP-2021-0080-0002 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Receipt of Applications for New Uses (March 2021) | Notice | 2021-03-24T04:00:00Z | 2021 | 3 | 2021-03-24T04:00:00Z | 2021-03-24T21:41:02Z | 2021-06069 | 0 | 0 | 0900006484a76d21 | ||
| EPA-HQ-OPP-2021-0080-0001 | EPA | None EPA-HQ-OPP-2021-0080 | Pesticide Product Registration: Receipt of Applications for New Uses (February 2021) | Notice | 2021-02-24T05:00:00Z | 2021 | 2 | 2021-02-24T19:27:23Z | 2021-03713 | 0 | 0 | 0900006484a4bbd3 |
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;