documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OAR-2018-0170" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2018-0170-0001 | EPA | Response to CAA Section 126(b) Petition From New York EPA-HQ-OAR-2018-0170 | Extension of Deadline for Action on the Section 126(b) Petition From New York | Rule | 2018-05-11T04:00:00Z | 2018 | 5 | 2018-05-25T08:51:10Z | 2018-09892 | 0 | 0 | 0900006483258be3 | |||
| EPA-HQ-OAR-2018-0170-0004 | EPA | Response to CAA Section 126(b) Petition From New York EPA-HQ-OAR-2018-0170 | Petition of the State of New York Pursuant to Section 126 of the Clean Air Act | Supporting & Related Material | Petition | 2018-05-11T04:00:00Z | 2018 | 5 | 2018-05-25T08:51:29Z | 0 | 0 | 090000648320c999 | |||
| EPA-HQ-OAR-2018-0170-0002 | EPA | Response to CAA Section 126(b) Petition From New York EPA-HQ-OAR-2018-0170 | Letter dated April 13, 2018 from Karen A. Harbert, President and CEO, Global Energy Institute, U.S. Chamber of Commerce, to William Wehrum, Assistant Administrator, Office of Air and Radiation, USEPA Headquarters, and Matthew Leopold, General Counsel, USEPA Headquarters, requesting that the USEPA extend the review period for the New York 126 petition | Supporting & Related Material | Letter | 2018-05-11T04:00:00Z | 2018 | 5 | 2018-05-25T08:52:04Z | 0 | 0 | 090000648320c997 | |||
| EPA-HQ-OAR-2018-0170-0003 | EPA | Response to CAA Section 126(b) Petition From New York EPA-HQ-OAR-2018-0170 | Letter dated April 25, 2018 from Justin A. Savage, Sidley Austin LLP, to William Wehrum, Assistant Administrator, Office of Air and Radiation, USEPA Headquarters, and Matthew Leopold, General Counsel, USEPA Headquarters, requesting, on behalf of the Air Stewardship Coalition, that the USEPA extend the review period for the New York 126 petition | Supporting & Related Material | Letter | 2018-05-11T04:00:00Z | 2018 | 5 | 2018-05-25T08:52:21Z | 0 | 0 | 090000648320c998 | |||
| EPA-HQ-OAR-2018-0170-0005 | EPA | Response to CAA Section 126(b) Petition From New York EPA-HQ-OAR-2018-0170 | Documentation of Meeting between EPA and Air Stewardship Coalition Regarding the 3/12/18 NY 126 Petition | Supporting & Related Material | Meeting Materials | 2018-05-11T04:00:00Z | 2018 | 5 | 2018-05-25T08:51:48Z | 0 | 0 | 090000648324455e |
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;