documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-R06-OAR-2022-0907" and posted_year = 2023 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-2022-0907-0006 | EPA | None EPA-R06-OAR-2022-0907 | AR039.06 Air Quality State Implementation Plans; Approvals and Promulgations; Arkansas; Revisions to Rule 19: Rules of the Arkansas Plan of Implementation for Air Pollution Control, Final rule, 5 pages. | Rule | 2023-12-29T05:00:00Z | 2023 | 12 | 2023-12-29T05:00:00Z | 2023-12-29T15:30:24Z | 2023-28497 | 0 | 0 | 0900006486365b3b | ||
| EPA-R06-OAR-2022-0907-0003 | EPA | None EPA-R06-OAR-2022-0907 | AR039.03 Arkansas Rule No. 19, Rules of the Arkansas Plan of Implementation for Air Pollution Control, As approved by the Arkansas Pollution Control and Ecology Commission January 28, 2022, submitted to EPA via cover letter dated May 12, 2022, EPA received June 22, 2022 (AR-59, Rg19) 412 pages 8.1 MB c7d | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:46:17Z | 0 | 0 | 090000648549ff95 | ||||
| EPA-R06-OAR-2022-0907-0001 | EPA | None EPA-R06-OAR-2022-0907 | AR039.01 Air Quality State Implementation Plans; Approvals and Promulgations: Arkansas; Revisions to Arkansas Rule No. 19, Rules of the Arkansas Plan of Implementation for Air Pollution Control, Proposed rule, 4 pages. | Proposed Rule | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-22T04:00:00Z | 2023-09-22T03:59:59Z | 2023-08-22T15:42:51Z | 2023-17944 | 0 | 0 | 0900006485ed5326 | |
| EPA-R06-OAR-2022-0907-0005 | EPA | None EPA-R06-OAR-2022-0907 | AR039.05 EJ Considerations Supporting Documents, 8 pages 1.9 MB | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:45:27Z | 0 | 0 | 0900006485cd509c | ||||
| EPA-R06-OAR-2022-0907-0002 | EPA | None EPA-R06-OAR-2022-0907 | AR039.02 EPA Technical Support Document (TSD), 160 pages 1.2 MB | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:45:55Z | 0 | 0 | 090000648549ff94 | ||||
| EPA-R06-OAR-2022-0907-0004 | EPA | None EPA-R06-OAR-2022-0907 | AR039.04 Arkansas Supplement to May 12, 2022, Rule No. 19 SIP Submittal (AR-59, Rg19) 34 pages 1.5 MB | Supporting & Related Material | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-23T03:46:33Z | 0 | 0 | 0900006485cd509b |
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;