documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPPT-2017-0647" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
| 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-OPPT-2017-0647-0022 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | Consultation | Supporting & Related Material | 2022-11-23T05:00:00Z | 2022 | 11 | 2022-11-24T01:46:42Z | 0 | 0 | 09000064851590d1 | ||||
| EPA-HQ-OPPT-2017-0647-0021 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | Supporting Statement | Supporting & Related Material | ICR Supporting Statement | 2022-11-23T05:00:00Z | 2022 | 11 | 2022-11-24T01:46:52Z | 0 | 0 | 0900006485159269 | |||
| EPA-HQ-OPPT-2017-0647-0020 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Polychlorinated Biphenyls: Consolidated Reporting and Recordkeeping Requirements (Renewal) | Notice | Information Collection Request (ICR) | 2022-11-23T05:00:00Z | 2022 | 11 | 2022-11-23T05:00:00Z | 2022-12-24T04:59:59Z | 2022-11-23T15:27:58Z | 2022-25570 | 0 | 0 | 09000064854fe374 |
| EPA-HQ-OPPT-2017-0647-0016 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | EPA Form No. 771053 | Supporting & Related Material | Form | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-08T01:15:16Z | 0 | 0 | 0900006484f87f6f | |||
| EPA-HQ-OPPT-2017-0647-0017 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | Supporting Statement | Supporting & Related Material | ICR Supporting Statement | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-08T01:14:53Z | 0 | 0 | 0900006484f87f70 | |||
| EPA-HQ-OPPT-2017-0647-0014 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: PCBs, Consolidated Reporting and Recordkeeping Requirements | Notice | Information Collection Request (ICR) | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-07T04:00:00Z | 2022-06-07T03:59:59Z | 2022-04-07T12:33:23Z | 2022-07442 | 0 | 0 | 0900006484fff3f1 |
| EPA-HQ-OPPT-2017-0647-0019 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | Guidance for Applicants Requesting to Treat/Dispose of PCBs Using Incineration or an Alternative Method | Supporting & Related Material | Publication - USEPA | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-08T01:15:00Z | 0 | 0 | 0900006484fd6f34 | |||
| EPA-HQ-OPPT-2017-0647-0015 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | EPA Form No. 772012 | Supporting & Related Material | Form | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-08T01:15:08Z | 0 | 0 | 0900006484f87f6e | |||
| EPA-HQ-OPPT-2017-0647-0018 | EPA | PCBs, Consolidated Reporting and Record Keeping Requirements EPA-HQ-OPPT-2017-0647 | Non-Substantive Change for PCB Applicants Guide EPA ICR No. 1443.13 | Supporting & Related Material | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-08T01:15:23Z | 0 | 0 | 0900006484fd33c9 |
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;