documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "EPA", docket_id = "EPA-HQ-OAR-2004-0383" and posted_year = 1997 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-0383-0026 | EPA | Oil and Natural Gas Production MACT and Natural Gas Transmission and Storage MACT Legacy Docket ID #: A-94-04 EPA-HQ-OAR-2004-0383 | Letter to Bill Grimely, USEPA, from James Evans, Senior Technology Manager, Gas Research Institute, re: Formal Request to Review Development of Measurement Methods and Emission Estimation Techniques for Determining BTEX and VOC Emisssion from Glycol Dehydrators Report [II-D-87] | Supporting & Related Material | Letter, Memorandum, Email | 1997-10-24T04:00:00Z | 1997 | 10 | 2006-09-02T15:56:01Z | 0 | 0 | 09000064800bf1f6 | |||
| EPA-HQ-OAR-2004-0383-0025 | EPA | Oil and Natural Gas Production MACT and Natural Gas Transmission and Storage MACT Legacy Docket ID #: A-94-04 EPA-HQ-OAR-2004-0383 | Letter to Martha Smith, USEPA, from Curtis O. Rueter, Senior Engineer, Radian Corporation, re: Two Tables on Metal Level and Lower Glycols (Diethylene and Ethylene Glycol) Found in Triethylene Glycol Dehydration Units [II-D-86] | Supporting & Related Material | Letter, Memorandum, Email | 1997-10-24T04:00:00Z | 1997 | 10 | 2006-09-02T15:56:01Z | 0 | 0 | 09000064800bf1e5 | |||
| EPA-HQ-OAR-2004-0383-0010 | EPA | Oil and Natural Gas Production MACT and Natural Gas Transmission and Storage MACT Legacy Docket ID #: A-94-04 EPA-HQ-OAR-2004-0383 | Economic Impact Analysis of the Proposed Oil and Natural Gas NESHAPs [EPA-453R-96-016] [A-94-04 III-B-2] | Supporting & Related Material | Publication | 1997-10-24T04:00:00Z | 1997 | 10 | 2017-03-17T22:26:03Z | 0 | 0 | 09000064800bf0ed | |||
| EPA-HQ-OAR-2004-0383-0028 | EPA | Oil and Natural Gas Production MACT and Natural Gas Transmission and Storage MACT Legacy Docket ID #: A-94-04 EPA-HQ-OAR-2004-0383 | Letter to Martha Smith, USEPA, from Ellen Siegler, American Petroleum Institute, re: Review of Attached Memorandum [II-D-88] | Supporting & Related Material | Letter, Memorandum, Email | 1997-10-24T04:00:00Z | 1997 | 10 | 2006-09-02T15:56:01Z | 0 | 0 | 09000064800bf22e | |||
| EPA-HQ-OAR-2004-0383-0011 | EPA | Oil and Natural Gas Production MACT and Natural Gas Transmission and Storage MACT Legacy Docket ID #: A-94-04 EPA-HQ-OAR-2004-0383 | Economic Impact Analysis of the Proposed Oil and Natural Gas NESHAPs [EPA-453R-96-016][A-94-04 III-B-2 (this document is listed as A-94-04 II-A-8)] [Part 2] | Supporting & Related Material | Publication | 1997-10-24T04:00:00Z | 1997 | 10 | 2006-09-02T15:56:00Z | 0 | 0 | 09000064800bf116 | |||
| EPA-HQ-OAR-2004-0383-0004 | EPA | Oil and Natural Gas Production MACT and Natural Gas Transmission and Storage MACT Legacy Docket ID #: A-94-04 EPA-HQ-OAR-2004-0383 | Information Collection Request (ICR): Paperwork Reduction Act Submission [A-94-04 II-F-4] | Supporting & Related Material | Office of Management and Budget (OMB) | 1997-09-29T04:00:00Z | 1997 | 9 | 2006-09-02T15:56:00Z | 0 | 0 | 09000064800bf06f | |||
| EPA-HQ-OAR-2004-0383-0003 | EPA | Oil and Natural Gas Production MACT and Natural Gas Transmission and Storage MACT Legacy Docket ID #: A-94-04 EPA-HQ-OAR-2004-0383 | Information Collection Request (ICR): Paperwork Reduction Act Submission [A-94-04 II-F-3] | Supporting & Related Material | Office of Management and Budget (OMB) | 1997-09-29T04:00:00Z | 1997 | 9 | 2006-09-02T15:56:00Z | 0 | 0 | 09000064800bf055 |
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;