documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-R01-OAR-2023-0189" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-R01-OAR-2023-0189-0007 | EPA | None EPA-R01-OAR-2023-0189 | C1-2023-18909 | Other | 2023-09-22T04:00:00Z | 2023 | 9 | 2023-09-22T04:00:00Z | 2023-09-23T02:32:23Z | 0 | 0 | 0900006485fe9643 | |||
| EPA-R01-OAR-2023-0189-0006 | EPA | None EPA-R01-OAR-2023-0189 | Air Quality State Implementation Plans; Approvals and Promulgations: Connecticut; New Source Review Permit Program State Plan Revision | Rule | 2023-09-05T04:00:00Z | 2023 | 9 | 2023-09-05T04:00:00Z | 2023-09-22T13:43:14Z | 2023-18909 | 0 | 0 | 0900006485f41a50 | ||
| EPA-R01-OAR-2023-0189-0003 | EPA | None EPA-R01-OAR-2023-0189 | CT SIP NSR Updates Clarification Letter 02-14-2023 | Supporting & Related Material | Letter | 2023-04-12T04:00:00Z | 2023 | 4 | 2023-04-13T04:35:54Z | 0 | 0 | 090000648593ae32 | |||
| EPA-R01-OAR-2023-0189-0005 | EPA | None EPA-R01-OAR-2023-0189 | CT SIP NSR Updates Letter 12-15-2020 | Supporting & Related Material | Letter | 2023-04-12T04:00:00Z | 2023 | 4 | 2023-04-13T04:36:32Z | 0 | 0 | 090000648593ae34 | |||
| EPA-R01-OAR-2023-0189-0004 | EPA | None EPA-R01-OAR-2023-0189 | CT SIP NSR Updates Clarification Letter Attachment A 02-14-2013 | Supporting & Related Material | Letter | 2023-04-12T04:00:00Z | 2023 | 4 | 2023-04-13T04:36:19Z | 0 | 0 | 090000648593ae33 | |||
| EPA-R01-OAR-2023-0189-0002 | EPA | None EPA-R01-OAR-2023-0189 | CT SIP NSR Updates Technical Support Document | Supporting & Related Material | Technical Support Document | 2023-04-12T04:00:00Z | 2023 | 4 | 2023-04-13T04:36:07Z | 0 | 0 | 090000648593ae31 | |||
| EPA-R01-OAR-2023-0189-0001 | EPA | None EPA-R01-OAR-2023-0189 | Air Quality State Implementation Plans; Approvals and Promulgations: Connecticut; New Source Review Permit Program State Plan Revision | Proposed Rule | 2023-04-11T04:00:00Z | 2023 | 4 | 2023-04-11T04:00:00Z | 2023-05-12T03:59:59Z | 2023-05-13T01:00:58Z | 2023-07331 | 0 | 0 | 090000648592bf4e |
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;