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-2004-0088" and posted_year = 1996 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2004-0088-0006 | EPA | Regulation of Fuels and Fuel Additives: Standards for Reformulated and Conventional Gasoline Legacy Docket ID #: A-96-27 EPA-HQ-OAR-2004-0088 | Re-Estimation of the Refining Cost of Reformulated Gasoline NOx Control, Draft [A-96-27 VIII-A-01] | Supporting & Related Material | Report | 1996-12-18T05:00:00Z | 1996 | 12 | 2006-09-02T15:41:03Z | 0 | 0 | 09000064800c5c6e | |||
| EPA-HQ-OAR-2004-0088-0005 | EPA | Regulation of Fuels and Fuel Additives: Standards for Reformulated and Conventional Gasoline Legacy Docket ID #: A-96-27 EPA-HQ-OAR-2004-0088 | Regulations of Fules and Fuel Additives; Standards for Reformulated Gasoline [A-96-27 VI-A-02] | Rule | Federal Register Document | 1996-07-09T04:00:00Z | 1996 | 7 | 1996-07-09T04:00:00Z | 1996-09-10T03:59:59Z | 2008-01-08T21:17:19Z | 35960 | 0 | 0 | 09000064800c5c63 |
| EPA-HQ-OAR-2004-0088-0003 | EPA | Regulation of Fuels and Fuel Additives: Standards for Reformulated and Conventional Gasoline Legacy Docket ID #: A-96-27 EPA-HQ-OAR-2004-0088 | Before the United States Environmental Protection Agency; American Petroleum Institute Petition for Reconsideration and Rulemaking on NOx Reduction Portion of the Reformulated Gasoline Rule 59 FR 7716 (February 16, 1994) 40 CFR Part 80 [A-96-27 VI-A-01] | Supporting & Related Material | Petition | 1996-07-01T04:00:00Z | 1996 | 7 | 2006-12-07T19:54:46Z | 0 | 0 | 09000064800c5c24 | |||
| EPA-HQ-OAR-2004-0088-0008 | EPA | Regulation of Fuels and Fuel Additives: Standards for Reformulated and Conventional Gasoline Legacy Docket ID #: A-96-27 EPA-HQ-OAR-2004-0088 | Letter to William F. O'Keefe, Executive Vice President, American Petroleum Institute from Mary D. Nichols, Assistant Administrator, Office of Air and Radiation (OAR), USEPA re: Initial Review of Petition [A-96-27 VI-B-01] | Supporting & Related Material | Letter, Memorandum, Email | 1996-04-18T04:00:00Z | 1996 | 4 | 2006-09-02T15:41:03Z | 0 | 0 | 09000064800c5c98 | |||
| EPA-HQ-OAR-2004-0088-0009 | EPA | Regulation of Fuels and Fuel Additives: Standards for Reformulated and Conventional Gasoline Legacy Docket ID #: A-96-27 EPA-HQ-OAR-2004-0088 | Letter to Mary Nichols, Assistant Administrator, USEPA from William F. O'Keefe, Executive Vice President, American Petroleum Institue (API) re: USEPA's (USEPA) Initial Assessment of American Petroleum Institute's (Institute) (API) Petition for Reconsideration [A-96-27 VI-B-02] | Supporting & Related Material | Letter, Memorandum, Email | 1996-04-18T04:00:00Z | 1996 | 4 | 2006-12-07T19:27:16Z | 0 | 0 | 09000064800c5ca6 |
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;