documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "EPA", docket_id = "EPA-HQ-OAR-2011-0044" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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-HQ-OAR-2011-0044-5866 | EPA | Standards of Performance for Fossil-Fuel-Fired, Electric Utility, Industrial-Commercial-Institutional, and Small Industrial-Commercial-Institutional Steam Generating Unit EPA-HQ-OAR-2011-0044 | Denial of Petitions for Reconsideration of Certain Issues: MATS and Utility NSPS | Supporting & Related Material | Decision | 2015-04-30T04:00:00Z | 2015 | 4 | 2015-04-30T15:51:11Z | 0 | 0 | 0900006481ac2267 | |||
| EPA-HQ-OAR-2011-0044-5867 | EPA | Standards of Performance for Fossil-Fuel-Fired, Electric Utility, Industrial-Commercial-Institutional, and Small Industrial-Commercial-Institutional Steam Generating Unit EPA-HQ-OAR-2011-0044 | Denial Letters to Petitioners April 21, 2015 | Supporting & Related Material | Letter | 2015-04-30T04:00:00Z | 2015 | 4 | 2015-04-30T15:51:11Z | 0 | 0 | 0900006481ac2da0 | |||
| EPA-HQ-OAR-2011-0044-5865 | EPA | Standards of Performance for Fossil-Fuel-Fired, Electric Utility, Industrial-Commercial-Institutional, and Small Industrial-Commercial-Institutional Steam Generating Unit EPA-HQ-OAR-2011-0044 | Mercury and Air Toxics Standards and Utility New Source Performance Standards; Final Action on Reconsideration | Rule | 2015-04-30T04:00:00Z | 2015 | 4 | 2015-04-30T04:00:00Z | 2015-04-30T15:49:08Z | 2015-10118 | 0 | 0 | 0900006481ac520f | ||
| EPA-HQ-OAR-2011-0044-5853 | EPA | Standards of Performance for Fossil-Fuel-Fired, Electric Utility, Industrial-Commercial-Institutional, and Small Industrial-Commercial-Institutional Steam Generating Unit EPA-HQ-OAR-2011-0044 | National Emission Standards: Coal- and Oil-Fired Electric, Fossil-Fuel-Fired Electric Utility, Industrial-Commercial-Institutional, and Small Industrial-Commercial-Institutional Utility Steam Generating Units, etc. | Proposed Rule | 2015-02-18T05:00:00Z | 2015 | 2 | 2015-02-18T05:00:00Z | 2015-04-04T03:59:59Z | 2015-04-16T02:03:17Z | 2015-01699 | 0 | 0 | 0900006481a06f5f |
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;