documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-R04-OAR-2022-0397" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 11
| 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-0397-0012 | EPA | None EPA-R04-OAR-2022-0397 | Air Quality State Implementation Plans; Approvals and Promulgations: South Carolina: New Source Review Updates | Rule | 2023-10-04T04:00:00Z | 2023 | 10 | 2023-10-04T04:00:00Z | 2023-10-04T15:05:10Z | 2023-21722 | 0 | 0 | 0900006486033d39 | ||
| EPA-R04-OAR-2022-0397-0008 | EPA | None EPA-R04-OAR-2022-0397 | nsr_memo_03-13-2018 | Supporting & Related Material | 2023-09-27T04:00:00Z | 2023 | 9 | 2023-09-28T02:29:26Z | 0 | 0 | 0900006485fe219a | ||||
| EPA-R04-OAR-2022-0397-0006 | EPA | None EPA-R04-OAR-2022-0397 | 2019-02-21_1780-0011 | Supporting & Related Material | 2023-09-27T04:00:00Z | 2023 | 9 | 2023-09-28T02:28:51Z | 0 | 0 | 0900006485fe2198 | ||||
| EPA-R04-OAR-2022-0397-0010 | EPA | None EPA-R04-OAR-2022-0397 | 19-004-PSD Public Notice_Page_2 | Supporting & Related Material | 2023-09-27T04:00:00Z | 2023 | 9 | 2023-09-28T02:28:19Z | 0 | 0 | 0900006485fe1b13 | ||||
| EPA-R04-OAR-2022-0397-0009 | EPA | None EPA-R04-OAR-2022-0397 | 0- Prosperity CNS CDK4 Application 10-4-2018 (2) | Supporting & Related Material | 2023-09-27T04:00:00Z | 2023 | 9 | 2023-09-28T02:28:02Z | 0 | 0 | 0900006485fe1b10 | ||||
| EPA-R04-OAR-2022-0397-0011 | EPA | None EPA-R04-OAR-2022-0397 | 19-004-PSD Public Notice_Page_1 | Supporting & Related Material | 2023-09-27T04:00:00Z | 2023 | 9 | 2023-09-28T02:28:35Z | 0 | 0 | 0900006485fe1bf2 | ||||
| EPA-R04-OAR-2022-0397-0007 | EPA | None EPA-R04-OAR-2022-0397 | 2019-02-21_1780-0011cc.fd | Supporting & Related Material | 2023-09-27T04:00:00Z | 2023 | 9 | 2023-09-28T02:29:10Z | 0 | 0 | 0900006485fe2199 | ||||
| EPA-R04-OAR-2022-0397-0005 | EPA | None EPA-R04-OAR-2022-0397 | Air Quality State Implementation Plans; Approvals and Promulgations: South Carolina; New Source Review Updates | Rule | 2023-08-23T04:00:00Z | 2023 | 8 | 2023-08-23T04:00:00Z | 2023-08-23T13:27:21Z | 2023-18120 | 0 | 0 | 0900006485ed8cf7 | ||
| EPA-R04-OAR-2022-0397-0001 | EPA | None EPA-R04-OAR-2022-0397 | SC's GHG PSD Joint Resolution Letter (March 4, 2011) | Supporting & Related Material | 2022-07-26T04:00:00Z | 2022 | 7 | 2022-07-27T00:40:10Z | 0 | 0 | 09000064851282cc | ||||
| EPA-R04-OAR-2022-0397-0002 | EPA | None EPA-R04-OAR-2022-0397 | SC's February 3, 2022 SIP Revisions | Supporting & Related Material | 2022-07-26T04:00:00Z | 2022 | 7 | 2022-07-27T00:40:19Z | 0 | 0 | 09000064851282cd | ||||
| EPA-R04-OAR-2022-0397-0003 | EPA | None EPA-R04-OAR-2022-0397 | Air Quality State Implementation Plans; Approvals and Promulgations: South Carolina; New Source Review Updates | Proposed Rule | 2022-07-26T04:00:00Z | 2022 | 7 | 2022-07-26T04:00:00Z | 2022-08-26T03:59:59Z | 2022-08-26T01:01:02Z | 2022-15778 | 0 | 0 | 09000064851e90d5 |
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;