documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-R06-OAR-2016-0688" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-R06-OAR-2016-0688-0007 | EPA | None EPA-R06-OAR-2016-0688 | LA058.07 Correction published in Federal Register December 16, 2022 (87 FR 76944) to LA058.06 Air Quality State Implementation Plans; Approvals and Promulgations: Louisiana; Repeal of Excess Emissions Related Provisions, Final rule, published October 5, 2022 (87 FR 60292) | Rule | 2022-12-16T05:00:00Z | 2022 | 12 | 2022-12-16T05:00:00Z | 2022-12-28T23:55:19Z | C1-2022-21248 | 0 | 0 | 090000648553cbf1 | ||
| EPA-R06-OAR-2016-0688-0006 | EPA | None EPA-R06-OAR-2016-0688 | LA058.06 Air Quality State Implementation Plans; Approvals and Promulgations: Louisiana; Repeal of Excess Emissions Related Provisions, Final rule, 4 pages. This Federal Register action begins on the lower right corner of the first page. | Rule | 2022-10-05T04:00:00Z | 2022 | 10 | 2022-10-05T04:00:00Z | 2022-10-05T15:47:09Z | 2022-21248 | 0 | 0 | 09000064853b3e1a | ||
| EPA-R06-OAR-2016-0688-0001 | EPA | None EPA-R06-OAR-2016-0688 | LA058.01 Air Quality State Implementation Plans; Approvals and Promulgations: Louisiana; Repeal of Excess Emissions Related Provisions, Proposed rule, 5 pages. | Proposed Rule | 2022-07-22T04:00:00Z | 2022 | 7 | 2022-07-22T04:00:00Z | 2022-08-23T03:59:59Z | 2022-08-27T01:00:42Z | 2022-15422 | 0 | 0 | 09000064851e1ed7 | |
| EPA-R06-OAR-2016-0688-0002 | EPA | None EPA-R06-OAR-2016-0688 | LA058.02 Louisiana State Implementation Plan (SIP) Update in Response to EPA's Startup-Shutdown-Malfunction (SSM) SIP Call, submitted to EPA November 22, 2016 (LA-142). 364 pages 9.7 MB wz6 | Supporting & Related Material | 2022-07-22T04:00:00Z | 2022 | 7 | 2022-07-23T01:03:55Z | 0 | 0 | 09000064823e2170 | ||||
| EPA-R06-OAR-2016-0688-0003 | EPA | None EPA-R06-OAR-2016-0688 | LA058.03 U.S. Census Bureau QuickFacts; Louisiana; United States | Supporting & Related Material | 2022-07-22T04:00:00Z | 2022 | 7 | 2022-07-23T01:03:42Z | 0 | 0 | 09000064823e2171 |
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;