documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OAR-2015-0341" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-HQ-OAR-2015-0341-0035 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Air Pollution Control Cost Manual; Updates | Notice | Notice of Data Availability | 2016-09-22T04:00:00Z | 2016 | 9 | 2016-09-22T04:00:00Z | 2016-12-22T04:59:59Z | 2016-12-22T02:02:21Z | 2016-22846 | 0 | 0 | 0900006482239eec |
| EPA-HQ-OAR-2015-0341-0038 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Draft Chapter 2 - Refrigerated Condensers Chapter 2016-09-01 For Public Comment | Supporting & Related Material | Report | 2016-09-22T04:00:00Z | 2016 | 9 | 2016-09-24T00:31:40Z | 0 | 0 | 09000064821de0d1 | |||
| EPA-HQ-OAR-2015-0341-0036 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Draft - Chapter 2 - Cost Estimation: Concepts and Methodology 09-01-16 For Public Comment | Supporting & Related Material | Report | 2016-09-22T04:00:00Z | 2016 | 9 | 2016-09-24T00:31:35Z | 0 | 0 | 09000064821de0cf | |||
| EPA-HQ-OAR-2015-0341-0037 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Draft Chapter 2 - Incinerators and Oxidizers Chapter 09-01-16 For Public Comment | Supporting & Related Material | Report | 2016-09-22T04:00:00Z | 2016 | 9 | 2016-09-24T00:31:30Z | 0 | 0 | 09000064821de0d0 | |||
| EPA-HQ-OAR-2015-0341-0034 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Air Pollution Control Cost Manual | Notice | Notice of Data Availability | 2016-06-14T04:00:00Z | 2016 | 6 | 2016-06-14T14:13:41Z | 2016-14042 | 0 | 0 | 0900006482037087 | ||
| EPA-HQ-OAR-2015-0341-0033 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | SNCR Cost Manual Chapter 7th Edition 2016 | Supporting & Related Material | Report | 2016-05-20T04:00:00Z | 2016 | 5 | 2016-05-21T00:33:16Z | 0 | 0 | 0900006481fd6098 | |||
| EPA-HQ-OAR-2015-0341-0032 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Selective Catalytic Reduction (SCR) Cost Manual Chapter 7th Edition 2016 | Supporting & Related Material | Report | 2016-05-20T04:00:00Z | 2016 | 5 | 2016-05-21T00:33:11Z | 0 | 0 | 0900006481fd6443 | |||
| EPA-HQ-OAR-2015-0341-0031 | EPA | Update of the EPA Air Pollution Control Cost Manual EPA-HQ-OAR-2015-0341 | Email and attachments for inclusion in Control Cost Manual update docket - email from Haley Armstrong, ICAC to Larry Sorrels, EPA, December 18, 2015 | Supporting & Related Material | 2016-01-08T05:00:00Z | 2016 | 1 | 2016-01-08T20:09:45Z | 0 | 0 | 0900006481df3aa0 |
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;