documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2002-0029" and posted_year = 2003 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2002-0029-0002 | EPA | Standards of Performance for Bulk Gasoline Terminals and National Emission Standards for Gasoline Distribution Facilities (Bulk Gasoline Terminals and Pipeline Breakout Stations) Legacy Docket ID #: A-92-38 EPA-HQ-OAR-2002-0029 | Letter to Stephen Shedd, Office of Air Quality Planning and Standards, Waste and Chemical Processes, from Charles Hester, Project Leader, Pacific Environmental Services [A-92-38 IX-E-1] | Supporting & Related Material | Letter, Memorandum, Email | 2003-10-02T04:00:00Z | 2003 | 10 | 2016-11-25T18:53:33Z | 0 | 0 | 09000064800bd2cb | |||
| EPA-HQ-OAR-2002-0029-0003 | EPA | Standards of Performance for Bulk Gasoline Terminals and National Emission Standards for Gasoline Distribution Facilities (Bulk Gasoline Terminals and Pipeline Breakout Stations) Legacy Docket ID #: A-92-38 EPA-HQ-OAR-2002-0029 | Letter to Raymond A. Mosley, Director Office of the Federal Register (NF) National Archives and Records Administration from Kent C. Hustvedt Group Leader, Waste and Chemical Processes Group [A-92-38 IX-H-01] | Supporting & Related Material | Letter, Memorandum, Email | 2003-10-02T04:00:00Z | 2003 | 10 | 2016-11-25T18:53:52Z | 0 | 0 | 09000064800bd2e3 | |||
| EPA-HQ-OAR-2002-0029-0006 | EPA | Standards of Performance for Bulk Gasoline Terminals and National Emission Standards for Gasoline Distribution Facilities (Bulk Gasoline Terminals and Pipeline Breakout Stations) Legacy Docket ID #: A-92-38 EPA-HQ-OAR-2002-0029 | Letter to Susan Hurley, Office of the Fedral Register, from Charles Hester, EPA [A-92-38 IX-H-04] | Supporting & Related Material | Letter, Memorandum, Email | 2003-10-02T04:00:00Z | 2003 | 10 | 2016-11-25T18:55:20Z | 0 | 0 | 09000064800bd31e | |||
| EPA-HQ-OAR-2002-0029-0004 | EPA | Standards of Performance for Bulk Gasoline Terminals and National Emission Standards for Gasoline Distribution Facilities (Bulk Gasoline Terminals and Pipeline Breakout Stations) Legacy Docket ID #: A-92-38 EPA-HQ-OAR-2002-0029 | Letter to Raymond A. Mosley, Director Office of the Federal Register (NF), National Archives and Records Administration, from Kent C. Hustvedt, Group Leader, Waste and Chemical Processes Group [A-92-38 IX-H-02] | Supporting & Related Material | Letter, Memorandum, Email | 2003-10-02T04:00:00Z | 2003 | 10 | 2016-11-25T18:54:09Z | 0 | 0 | 09000064800bd2f1 | |||
| EPA-HQ-OAR-2002-0029-0007 | EPA | Standards of Performance for Bulk Gasoline Terminals and National Emission Standards for Gasoline Distribution Facilities (Bulk Gasoline Terminals and Pipeline Breakout Stations) Legacy Docket ID #: A-92-38 EPA-HQ-OAR-2002-0029 | Letter to Kent C. Hustvedt, Group Leader, Waste and Chemical Processes Group, EPA, from Raymond Mosley, Director of the Federal Register [A-92-38 IX-H-05] | Supporting & Related Material | Letter, Memorandum, Email | 2003-10-02T04:00:00Z | 2003 | 10 | 2016-11-25T18:55:39Z | 0 | 0 | 09000064800bd32e | |||
| EPA-HQ-OAR-2002-0029-0005 | EPA | Standards of Performance for Bulk Gasoline Terminals and National Emission Standards for Gasoline Distribution Facilities (Bulk Gasoline Terminals and Pipeline Breakout Stations) Legacy Docket ID #: A-92-38 EPA-HQ-OAR-2002-0029 | Letter to Charles Hester, EPA, from Susan Hurley, Office of the Federal Register [A-92-38 IX-H-03] | Supporting & Related Material | Letter, Memorandum, Email | 2003-03-18T05:00:00Z | 2003 | 3 | 2016-11-25T18:54:50Z | 0 | 0 | 09000064800bd306 |
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;