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-2013-0747" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2013-0747-0119 | EPA | Waiver Requests for the 2014 Renewable Fuel Standards EPA-HQ-OAR-2013-0747 | Letter to Administrator Gina McCarthy, USEPA, from Nathan Deal, State of Georgia, Office of the Governor, regarding Petition for Waiver Under the Clean Air Act Section 211 (o)(7)(A) | Supporting & Related Material | Letter | 2014-09-10T04:00:00Z | 2014 | 9 | 2014-09-10T16:48:15Z | 0 | 0 | 0900006481863b1b | |||
| EPA-HQ-OAR-2013-0747-0123 | EPA | Waiver Requests for the 2014 Renewable Fuel Standards EPA-HQ-OAR-2013-0747 | Letter to The Honorable Gina McCarthy, Administrator, USEPA, from Rick Perry, Governor, Office of the Governor, regarding Petition for Waver Under Clean Air Act Section 211 (o)(7)(A) | Supporting & Related Material | Letter | 2014-09-10T04:00:00Z | 2014 | 9 | 2014-09-10T16:47:36Z | 0 | 0 | 0900006481864919 | |||
| EPA-HQ-OAR-2013-0747-0122 | EPA | Waiver Requests for the 2014 Renewable Fuel Standards EPA-HQ-OAR-2013-0747 | Letter to The Honorable Gina McCarthy, Administrator, USEPA, from Nikki R. Haley, Office of the Governor, State of South Carolina, regarding Renewable Fuel Standard (RFS) | Supporting & Related Material | Letter | 2014-09-10T04:00:00Z | 2014 | 9 | 2014-09-10T16:47:16Z | 0 | 0 | 0900006481864918 | |||
| EPA-HQ-OAR-2013-0747-0124 | EPA | Waiver Requests for the 2014 Renewable Fuel Standards EPA-HQ-OAR-2013-0747 | Letter to The Honorable Gina McCarthy, Administrator, USEPA, from Gary R. Herbert, Governor, State of Utah, Office of the Governor | Supporting & Related Material | Letter | 2014-09-10T04:00:00Z | 2014 | 9 | 2014-09-10T16:47:56Z | 0 | 0 | 090000648186491b | |||
| EPA-HQ-OAR-2013-0747-0121 | EPA | Waiver Requests for the 2014 Renewable Fuel Standards EPA-HQ-OAR-2013-0747 | Letter to The Honorable Gina McCarthy, Administrator, USEPA, from Mary Fallin, Governor, regarding Renewable Fuel Standards (RFS) | Supporting & Related Material | Letter | 2014-09-10T04:00:00Z | 2014 | 9 | 2014-09-10T16:46:58Z | 0 | 0 | 0900006481864915 | |||
| EPA-HQ-OAR-2013-0747-0120 | EPA | Waiver Requests for the 2014 Renewable Fuel Standards EPA-HQ-OAR-2013-0747 | Letter to Gina McCarthy, Administrator, USEPA, from Susana Martinez, Governor, State of New Mexico, regarding a decision in granting a partial waiver from the Renewable Fuel Standard (RFS) mandate | Supporting & Related Material | Letter | 2014-09-10T04:00:00Z | 2014 | 9 | 2014-09-10T16:48:35Z | 0 | 0 | 09000064818644d7 | |||
| EPA-HQ-OAR-2013-0747-0117 | EPA | Waiver Requests for the 2014 Renewable Fuel Standards EPA-HQ-OAR-2013-0747 | Letter to The Honorable Gina McCarthy, Administrator, USEPA, from C.L. Butch Otter, Governor of Idaho, regarding Renewable Fuel Standards | Supporting & Related Material | Letter | 2014-09-09T04:00:00Z | 2014 | 9 | 2014-09-10T01:42:12Z | 0 | 0 | 0900006481863b19 | |||
| EPA-HQ-OAR-2013-0747-0118 | EPA | Waiver Requests for the 2014 Renewable Fuel Standards EPA-HQ-OAR-2013-0747 | Letter to The Honorable Gina McCarthy, Administrator, USEPA, from Paul R. LePage, Governor, State of Maine, Office of the Governor, regarding the reduction of the federal mandate and ensure that the compliance costs with this policy do not spike and exacerbate the price of gasoline | Supporting & Related Material | Letter | 2014-09-09T04:00:00Z | 2014 | 9 | 2014-09-10T01:42:28Z | 0 | 0 | 0900006481863b1a |
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;