documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-R04-OAR-2020-0400" 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)
document_type 3
agency_id 1
- EPA 10
| 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-2020-0400-0012 | EPA | None EPA-R04-OAR-2020-0400 | Air Quality State Implementation Plans; Approvals and Promulgations: Georgia; Atlanta Area Emissions Inventory and Emissions Statements Requirements for the 2015 8-Hour Ozone Standard | Rule | 2022-03-09T05:00:00Z | 2022 | 3 | 2022-03-09T05:00:00Z | 2022-03-10T16:34:05Z | 2022-04938 | 0 | 0 | 0900006484fc1585 | ||
| EPA-R04-OAR-2020-0400-0001 | EPA | None EPA-R04-OAR-2020-0400 | 1_Transmittal_2015Ozone_EI_ES_PermitReq_Final | Supporting & Related Material | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-27T01:34:25Z | 0 | 0 | 09000064847cc93d | ||||
| EPA-R04-OAR-2020-0400-0004 | EPA | None EPA-R04-OAR-2020-0400 | 4_GovDelivery | Supporting & Related Material | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-27T01:34:01Z | 0 | 0 | 09000064847cc940 | ||||
| EPA-R04-OAR-2020-0400-0006 | EPA | None EPA-R04-OAR-2020-0400 | 6_Comment Memo_2015Ozone_EI_ES_PermitReq | Supporting & Related Material | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-27T01:33:37Z | 0 | 0 | 09000064847cc942 | ||||
| EPA-R04-OAR-2020-0400-0005 | EPA | None EPA-R04-OAR-2020-0400 | 5_EPAComments | Supporting & Related Material | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-27T01:33:49Z | 0 | 0 | 09000064847cc941 | ||||
| EPA-R04-OAR-2020-0400-0008 | EPA | None EPA-R04-OAR-2020-0400 | SPeCS Cover Page | Supporting & Related Material | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-27T01:33:10Z | 0 | 0 | 09000064847cc944 | ||||
| EPA-R04-OAR-2020-0400-0009 | EPA | None EPA-R04-OAR-2020-0400 | Air Quality State Implementation Plans; Approvals and Promulgations: Georgia; Atlanta Area Emissions Inventory Requirements for the 2015 8-Hour Ozone Standard | Proposed Rule | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-26T05:00:00Z | 2021-12-28T04:59:59Z | 2021-12-01T02:00:58Z | 2021-25526 | 0 | 0 | 0900006484e800ee | |
| EPA-R04-OAR-2020-0400-0002 | EPA | None EPA-R04-OAR-2020-0400 | 2_SIPC~1 | Supporting & Related Material | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-27T01:34:13Z | 0 | 0 | 09000064847cc93e | ||||
| EPA-R04-OAR-2020-0400-0003 | EPA | None EPA-R04-OAR-2020-0400 | 3_CERT~1 | Supporting & Related Material | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-27T01:34:37Z | 0 | 0 | 09000064847cc93f | ||||
| EPA-R04-OAR-2020-0400-0007 | EPA | None EPA-R04-OAR-2020-0400 | 7_Atlanta_2015_Ozone_Emission_Inventory_FINAL | Supporting & Related Material | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-27T01:33:25Z | 0 | 0 | 09000064847cc943 |
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;