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-2016-0122" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-2016-0122-0022 | EPA | None EPA-HQ-OPP-2016-0122 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Notice of Arrival of Pesticides and Devices under the Federal Insecticide, Fungicide, and Rodenticide Act | Notice | Information Collection Request (ICR) | 2020-12-31T05:00:00Z | 2020 | 12 | 2020-12-31T05:00:00Z | 2021-02-02T04:59:59Z | 2020-12-31T15:25:48Z | 2020-29098 | 0 | 0 | 09000064849d60bb |
| EPA-HQ-OPP-2016-0122-0016 | EPA | None EPA-HQ-OPP-2016-0122 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Notice of Arrival of Pesticides and Devices Under Section 17(c) of the Federal Insecticide, Fungicide, and Rodenticide Act | Supporting & Related Material | ICR Supporting Statement | 2020-05-15T04:00:00Z | 2020 | 5 | 2020-10-04T00:57:54Z | 0 | 0 | 0900006484481a16 | |||
| EPA-HQ-OPP-2016-0122-0018 | EPA | None EPA-HQ-OPP-2016-0122 | e-CFR Data is current as of March 28, 2012 | Supporting & Related Material | Publication - Previous/Related FR Notice | 2020-05-15T04:00:00Z | 2020 | 5 | 2020-10-04T00:57:31Z | 0 | 0 | 0900006484481a80 | |||
| EPA-HQ-OPP-2016-0122-0021 | EPA | None EPA-HQ-OPP-2016-0122 | Emergency Processing Request for Information Collected in ITDS Pilot for Pesticide Notice of Arrival 6/23/2016 EPA ICR No. 0152.11 OMB Control No. 2070-0020 | Supporting & Related Material | ICR Supporting Statement | 2020-05-15T04:00:00Z | 2020 | 5 | 2020-10-04T00:57:32Z | 0 | 0 | 0900006484481a81 | |||
| EPA-HQ-OPP-2016-0122-0017 | EPA | None EPA-HQ-OPP-2016-0122 | Federal Insecticide, Fungicide, and Rodenticide Act. As Amended Through P.L. 110–246, Effective May 22, 2008 | Supporting & Related Material | 2020-05-15T04:00:00Z | 2020 | 5 | 2020-10-04T00:57:56Z | 0 | 0 | 0900006484481a7f | ||||
| EPA-HQ-OPP-2016-0122-0020 | EPA | None EPA-HQ-OPP-2016-0122 | ATTACHMENT F Work Sheets used to Calculate Respondent & Agency Labor Costs ICR’s Supporting Statement | Supporting & Related Material | ICR Supporting Statement | 2020-05-15T04:00:00Z | 2020 | 5 | 2020-10-04T00:57:35Z | 0 | 0 | 0900006484481a83 | |||
| EPA-HQ-OPP-2016-0122-0019 | EPA | None EPA-HQ-OPP-2016-0122 | 0152.13 Attachment E EPA Form 3540-1. USEPA Notice of Arrival of Pesticides and Devices Send Completed Form to Appropriate Regional Office Listed in the Instructions for this Form | Supporting & Related Material | Form | 2020-05-15T04:00:00Z | 2020 | 5 | 2020-10-04T00:57:34Z | 0 | 0 | 0900006484481a82 | |||
| EPA-HQ-OPP-2016-0122-0015 | EPA | None EPA-HQ-OPP-2016-0122 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Notice of Arrival of Pesticides and Devices | Notice | 2020-05-08T04:00:00Z | 2020 | 5 | 2020-05-08T04:00:00Z | 2020-07-08T03:59:59Z | 2020-05-12T12:27:35Z | 2020-09860 | 0 | 0 | 0900006484585923 |
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;