documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OAR-2015-0341" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_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-2015-0341-0078 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Chapter 2 Selective Catalytic Reduction Cost Manual update June 2019 RedLinesStrikeoutvf | Supporting & Related Material | Publication - USEPA | 2019-08-16T04:00:00Z | 2019 | 8 | 2019-08-17T00:33:17Z | 0 | 0 | 0900006483d0db6c | |||
| EPA-HQ-OAR-2015-0341-0079 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Chapter 2 Selective Catalytic Reduction Cost Manual Updatedvf June 2019 | Supporting & Related Material | Publication - USEPA | 2019-08-16T04:00:00Z | 2019 | 8 | 2019-08-17T00:33:33Z | 0 | 0 | 0900006483d0db6d | |||
| EPA-HQ-OAR-2015-0341-0077 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Selective Noncatalytic Reduction (SNCR) Cost Manual Chapter vf EPA April 2019 | Supporting & Related Material | Publication - USEPA | 2019-08-16T04:00:00Z | 2019 | 8 | 2019-08-17T00:34:02Z | 0 | 0 | 0900006483c220cd | |||
| EPA-HQ-OAR-2015-0341-0076 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Selective Noncatalytic Reduction (SNCR) Cost Manual Chaptervf April 2019 REDSTRIKE | Supporting & Related Material | Publication - USEPA | 2019-08-16T04:00:00Z | 2019 | 8 | 2019-08-17T00:34:16Z | 0 | 0 | 0900006483c220cc | |||
| EPA-HQ-OAR-2015-0341-0080 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Selective Catalytic Reduction Cost Manual spreadsheet June-2019vf | Supporting & Related Material | Form | 2019-08-16T04:00:00Z | 2019 | 8 | 2019-08-17T00:33:48Z | 0 | 0 | 0900006483d0db6e | |||
| EPA-HQ-OAR-2015-0341-0075 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Selective Noncatalytic Reduction (SNCR) Cost Manual Spreadsheetvf April 2019 | Supporting & Related Material | Form | 2019-08-16T04:00:00Z | 2019 | 8 | 2019-08-17T00:33:03Z | 0 | 0 | 0900006483c21867 | |||
| EPA-HQ-OAR-2015-0341-0071 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Carbon Adsorbers Changes After NODA Published 10-2018 | Supporting & Related Material | Report | 2019-03-28T04:00:00Z | 2019 | 3 | 2019-03-29T00:38:24Z | 0 | 0 | 0900006483873b45 | |||
| EPA-HQ-OAR-2015-0341-0072 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | EPA Carbon Adsorber calculation sheet 7th edition | Supporting & Related Material | Data | 2019-03-28T04:00:00Z | 2019 | 3 | 2019-03-29T00:38:08Z | 0 | 0 | 0900006483873b46 | |||
| EPA-HQ-OAR-2015-0341-0074 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Final Carbon Adsorbers Chapter 1 (7th edition) | Supporting & Related Material | Report | 2019-03-28T04:00:00Z | 2019 | 3 | 2019-03-29T00:37:37Z | 0 | 0 | 0900006483873b4c | |||
| EPA-HQ-OAR-2015-0341-0073 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Response to Comments Carbon Adsorbers 7th edition | Supporting & Related Material | Comment Response | 2019-03-28T04:00:00Z | 2019 | 3 | 2019-03-29T00:37:52Z | 0 | 0 | 0900006483873b4b |
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;