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-0316" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 10
| 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-0316-0013 | EPA | None EPA-HQ-OPP-2021-0316 | Supporting Statement for an Information Collection Request (ICR) Under the Paperwork Reduction Act (PRA) | Supporting & Related Material | ICR Supporting Statement | 2025-11-18T05:00:00Z | 2025 | 11 | 2025-11-19T00:20:21Z | 0 | 0 | 09000064b8f5c60c | |||
| EPA-HQ-OPP-2021-0316-0012 | EPA | None EPA-HQ-OPP-2021-0316 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Agricultural Worker Protection Standard Training, Notification, and Recordkeeping | Notice | 2025-11-18T05:00:00Z | 2025 | 11 | 2025-11-18T05:00:00Z | 2026-01-21T04:59:59Z | 2026-01-24T13:16:27Z | 2025-20074 | 0 | 0 | 09000064b9087889 | |
| EPA-HQ-OPP-2021-0316-0007 | EPA | None EPA-HQ-OPP-2021-0316 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Agricultural Worker Protection Standard Training, Notification and Recordkeeping | Notice | Information Collection Request (ICR) | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-27T04:00:00Z | 2022-05-28T03:59:59Z | 2022-04-27T19:04:42Z | 2022-09006 | 0 | 0 | 09000064850394da |
| EPA-HQ-OPP-2021-0316-0009 | EPA | None EPA-HQ-OPP-2021-0316 | Supporting Statement for PESP Information Collection Request (ICR) Under the Paperwork Reduction Act (PRA). EPA ICR No. 2491.05, OMB Control No. 2010-0190 | Supporting & Related Material | ICR Supporting Statement | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-28T01:14:41Z | 0 | 0 | 0900006484ebdb31 | |||
| EPA-HQ-OPP-2021-0316-0008 | EPA | None EPA-HQ-OPP-2021-0316 | Attachment C - OMB Control No. 2070-0190 Proposed Renewal of an Existing Collection and Request for Comment; Agricultural Worker Protection Standard Training, Notification and Record keeping | Supporting & Related Material | ICR Supporting Statement | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-28T01:14:52Z | 0 | 0 | 0900006484ebdb30 | |||
| EPA-HQ-OPP-2021-0316-0010 | EPA | None EPA-HQ-OPP-2021-0316 | Attachment A - Consultation Questions OPP ICR Renewal Agricultural Worker Protection Standard Training, Notification, and Recordkeeping EPA ICR No. 2491.05 and OMB Control No. 2070-0190 | Supporting & Related Material | ICR Supporting Statement | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-28T01:14:30Z | 0 | 0 | 0900006484ec14ab | |||
| EPA-HQ-OPP-2021-0316-0011 | EPA | None EPA-HQ-OPP-2021-0316 | Attachment B - How to Comply With the 2015 Revised Worker Protection Standard For Agricultural Pesticides. What Owners and Employers Need to Know OMB Control No. 2070-0190 | Supporting & Related Material | ICR Supporting Statement | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-28T01:15:02Z | 0 | 0 | 0900006484ebdb32 | |||
| EPA-HQ-OPP-2021-0316-0001 | EPA | None EPA-HQ-OPP-2021-0316 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Agricultural Worker Protection Standard Training, Notification and Recordkeeping | Notice | Information Collection Request (ICR) | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-03T04:00:00Z | 2021-10-05T03:59:59Z | 2021-11-03T01:01:38Z | 2021-16493 | 0 | 0 | 0900006484c24022 |
| EPA-HQ-OPP-2021-0316-0002 | EPA | None EPA-HQ-OPP-2021-0316 | Attachment B - How to Comply With the 2015 Revised Worker Protection Standard For Agricultural Pesticides - What Owners and Employers Need To Know | Supporting & Related Material | Publication | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T01:00:26Z | 0 | 0 | 0900006484c100da | |||
| EPA-HQ-OPP-2021-0316-0003 | EPA | None EPA-HQ-OPP-2021-0316 | Supporting Statement for an Information Collection Request (ICR) Under the Paperwork Reduction Act (PRA) | Supporting & Related Material | ICR Supporting Statement | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T01:00:14Z | 0 | 0 | 0900006484c1349c |
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;