documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R01-OAR-2019-0348" 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)
| 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-2019-0348-0008 | EPA | None EPA-R01-OAR-2019-0348 | Air Quality State Implementation Plans; Approvals and Promulgations: Connecticut; Regional Haze Five Year Progress Report | Rule | 2019-11-26T05:00:00Z | 2019 | 11 | 2019-11-26T05:00:00Z | 2019-11-26T13:36:24Z | 2019-25595 | 0 | 0 | 09000064841b769e | ||
| EPA-R01-OAR-2019-0348-0003 | EPA | None EPA-R01-OAR-2019-0348 | 5_yr_sip_lookback_connecticut_final | Supporting & Related Material | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-26T01:24:52Z | 0 | 0 | 0900006483fc3ac6 | ||||
| EPA-R01-OAR-2019-0348-0005 | EPA | None EPA-R01-OAR-2019-0348 | Appendix D 2011 EMISSIONS REDUCTION SUMMARY_MANEVU_REGION | Supporting & Related Material | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-26T01:25:27Z | 0 | 0 | 0900006483fc3ac8 | ||||
| EPA-R01-OAR-2019-0348-0007 | EPA | None EPA-R01-OAR-2019-0348 | Appendix C Actual and Potential Emissions of Alternative BART Units_final | Supporting & Related Material | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-26T01:25:42Z | 0 | 0 | 0900006483fc3ad3 | ||||
| EPA-R01-OAR-2019-0348-0001 | EPA | None EPA-R01-OAR-2019-0348 | Air Quality State Implementation Plans; Approvals and Promulgations: Connecticut; Regional Haze Five Year Progress Report | Proposed Rule | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-25T04:00:00Z | 2019-10-26T03:59:59Z | 2019-09-25T13:04:13Z | 2019-20778 | 0 | 0 | 0900006483fc33df | |
| EPA-R01-OAR-2019-0348-0004 | EPA | None EPA-R01-OAR-2019-0348 | Appendix B_ Status of Emissions from 167 Key Stacks | Supporting & Related Material | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-26T01:25:10Z | 0 | 0 | 0900006483fc3ac7 | ||||
| EPA-R01-OAR-2019-0348-0002 | EPA | None EPA-R01-OAR-2019-0348 | CoverLettertoEPA | Supporting & Related Material | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-26T01:24:36Z | 0 | 0 | 0900006483fc3a4c | ||||
| EPA-R01-OAR-2019-0348-0006 | EPA | None EPA-R01-OAR-2019-0348 | RHPublicProcessCert | Supporting & Related Material | 2019-09-25T04:00:00Z | 2019 | 9 | 2019-09-26T01:25:58Z | 0 | 0 | 0900006483fc3ad0 |
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;