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-2004-0238" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-2004-0238-0052 | EPA | Area Source National Emissions for Hazardous Air Pollutants (NESHAP) for Oil and Natural Gas Production EPA-HQ-OAR-2004-0238 | Email to Stephanie Meadows, American Petroleum Institute (API) | Supporting & Related Material | Letter, Memorandum, Email | 2006-09-25T04:00:00Z | 2006 | 9 | 2006-09-25T15:46:30Z | 0 | 0 | 09000064801cbd7b | |||
| EPA-HQ-OAR-2004-0238-0051 | EPA | Area Source National Emissions for Hazardous Air Pollutants (NESHAP) for Oil and Natural Gas Production EPA-HQ-OAR-2004-0238 | Minutes from a meeting between the USEPA and the American Petroleum Institute (API) held on June 20, 2006. | Supporting & Related Material | Meeting/Teleconference Materials | 2006-08-10T04:00:00Z | 2006 | 8 | 2006-09-02T15:49:45Z | 0 | 0 | 09000064801b2dde | |||
| EPA-HQ-OAR-2004-0238-0050 | EPA | Area Source National Emissions for Hazardous Air Pollutants (NESHAP) for Oil and Natural Gas Production EPA-HQ-OAR-2004-0238 | Memorandum to Air and Radiation Docket, Docket No. EPA-HQ-2004-0238 re: June 2, 2006 Meeting Minutes - EPA & API | Supporting & Related Material | Letter, Memorandum, Email | 2006-06-07T04:00:00Z | 2006 | 6 | 2006-09-02T15:49:45Z | 0 | 0 | 0900006480182fa4 | |||
| EPA-HQ-OAR-2004-0238-0049 | EPA | Area Source National Emissions for Hazardous Air Pollutants (NESHAP) for Oil and Natural Gas Production EPA-HQ-OAR-2004-0238 | Meeting Summary March 29, 2006 - EPA and BP | Supporting & Related Material | Letter, Memorandum, Email | 2006-06-02T04:00:00Z | 2006 | 6 | 2006-09-02T15:49:44Z | 0 | 0 | 090000648017dafa | |||
| EPA-HQ-OAR-2004-0238-0048 | EPA | Area Source National Emissions for Hazardous Air Pollutants (NESHAP) for Oil and Natural Gas Production EPA-HQ-OAR-2004-0238 | Memorandum to HQ EPA Docket; Docket ID No. EPA-HQ-OAR-2004-0238 re: Additional Emissions Control Option Considered for Area Source Glycol Dehydrators at Oil and Natural Gas Production Facilities | Supporting & Related Material | 2006-01-20T05:00:00Z | 2006 | 1 | 2006-09-02T15:49:44Z | 0 | 0 | 09000064800ff2aa | ||||
| EPA-HQ-OAR-2004-0238-0047 | EPA | Area Source National Emissions for Hazardous Air Pollutants (NESHAP) for Oil and Natural Gas Production EPA-HQ-OAR-2004-0238 | Memorandum to Greg Nizich, EPA/QAQPS/ESD/WCPG re: Summary of November 9, 2005 Meeting with Industry Representatives | Supporting & Related Material | Letter, Memorandum, Email | 2006-01-20T05:00:00Z | 2006 | 1 | 2011-09-19T17:58:54Z | 0 | 0 | 09000064800fe6c3 |
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;