documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R04-OAR-2022-0982" 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-R04-OAR-2022-0982-0009 | EPA | None EPA-R04-OAR-2022-0982 | Air Quality State Implementation Plans; Approvals and Promulgations: Kentcuky; Redesignation of the Northern Kentucky Portion of the Cincinnati, OH-KY 2015 8-Hour Ozone Nonattainment Area to Attainment | Rule | 2023-10-04T04:00:00Z | 2023 | 10 | 2023-10-04T04:00:00Z | 2023-10-04T15:04:09Z | 2023-21866 | 0 | 0 | 090000648603391a | ||
| EPA-R04-OAR-2022-0982-0005 | EPA | None EPA-R04-OAR-2022-0982 | MOVES database files | Supporting & Related Material | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-29T02:13:52Z | 0 | 0 | 09000064855692f6 | ||||
| EPA-R04-OAR-2022-0982-0006 | EPA | None EPA-R04-OAR-2022-0982 | Northern KY 2015 Ozone Redesignation Request Completeness Determination | Supporting & Related Material | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-29T02:14:04Z | 0 | 0 | 0900006485834aa6 | ||||
| EPA-R04-OAR-2022-0982-0002 | EPA | None EPA-R04-OAR-2022-0982 | 2022-11-22 Correction letter for 2015 O3 NKY RR | Supporting & Related Material | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-29T02:13:41Z | 0 | 0 | 0900006485549f7e | ||||
| EPA-R04-OAR-2022-0982-0004 | EPA | None EPA-R04-OAR-2022-0982 | RE Northern KY mobile budgets - minor revisions | Supporting & Related Material | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-29T02:13:29Z | 0 | 0 | 0900006485549f80 | ||||
| EPA-R04-OAR-2022-0982-0001 | EPA | None EPA-R04-OAR-2022-0982 | 2022-9-20 NKY Redesignation Request FINAL | Supporting & Related Material | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-29T02:13:06Z | 0 | 0 | 0900006485549f7d | ||||
| EPA-R04-OAR-2022-0982-0003 | EPA | None EPA-R04-OAR-2022-0982 | 2022-11-14 CORRECTED Document NKY O3 Redesignation Request | Supporting & Related Material | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-29T02:13:17Z | 0 | 0 | 0900006485549f7f | ||||
| EPA-R04-OAR-2022-0982-0007 | EPA | None EPA-R04-OAR-2022-0982 | Air Quality State Implementation Plans; Approvals and Promulgations: Kentucky; Redesignation of the Northern Kentucky Portion of the Cincinnati, OH-KY 2015 8-Hour Ozone Nonattainment Area to Attainment | Proposed Rule | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-28T04:00:00Z | 2023-08-29T03:59:59Z | 2023-08-10T01:02:53Z | 2023-16223 | 0 | 0 | 0900006485d6aba3 |
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;