documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OAR-2008-0697" 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-2008-0697-0009 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | Revisions to Test Method for Determining Stack Gas Velocity Taking Into Account Velocity Decay Near the Stack Walls - Correction | Proposed Rule | Federal Register Document | 2009-09-09T04:00:00Z | 2009 | 9 | 2011-06-11T16:04:58Z | Z9-20395 | 0 | 0 | 0900006480a1f048 | ||
| EPA-HQ-OAR-2008-0697-0003 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | Technical Memorandum - Potential Method 2H Revisions | Supporting & Related Material | Letter, Memorandum, Email | 2009-08-25T04:00:00Z | 2009 | 8 | 2009-08-25T13:48:56Z | 0 | 0 | 09000064809e781c | |||
| EPA-HQ-OAR-2008-0697-0006 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | Correcting Flow Measurements for Wall Effects in Rectangular Ducts and Stacks | Supporting & Related Material | Report | 2009-08-25T04:00:00Z | 2009 | 8 | 2009-08-25T13:49:05Z | 0 | 0 | 09000064809e7a1b | |||
| EPA-HQ-OAR-2008-0697-0007 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | Impact of Wall Effects on Flue Gas Velocities in Rectangular Ducts in Rectangular Ducts and Stacks | Supporting & Related Material | Report | 2009-08-25T04:00:00Z | 2009 | 8 | 2009-08-25T13:49:08Z | 0 | 0 | 09000064809e7a1c | |||
| EPA-HQ-OAR-2008-0697-0005 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | CTM-041 and Potential Revisions to EPA Reference Method 2H | Supporting & Related Material | Report | 2009-08-25T04:00:00Z | 2009 | 8 | 2009-08-25T13:49:02Z | 0 | 0 | 09000064809e781f | |||
| EPA-HQ-OAR-2008-0697-0008 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | Conditional Test Method 041 (CTM-041)- Determination of Volumetric Gas Flow in Rectangular Duct or Stacks Taking Into Account Velocity Decay Near the Stack or Duct Walls. | Supporting & Related Material | Technical Support Document | 2009-08-25T04:00:00Z | 2009 | 8 | 2009-08-25T13:49:11Z | 0 | 0 | 09000064809e7a1d | |||
| EPA-HQ-OAR-2008-0697-0004 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | Application of Conditional Test Method-041 (CTM-041) to Reduce Over-Reporting of SO2 & NOx Emissions in Rectangular Ducts | Supporting & Related Material | Report | 2009-08-25T04:00:00Z | 2009 | 8 | 2009-08-25T13:48:59Z | 0 | 0 | 09000064809e781e | |||
| EPA-HQ-OAR-2008-0697-0001 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | Revisions to Test Method for Determining Stack Gas Velocity Taking Into Account Velocity Decay Near the Stack Walls | Proposed Rule | Federal Register Document | 2009-08-25T04:00:00Z | 2009 | 8 | 2009-08-25T04:00:00Z | 2009-10-27T03:59:59Z | 2011-06-11T16:04:58Z | E9-20395 | 0 | 0 | 0900006480a11382 |
| EPA-HQ-OAR-2008-0697-0002 | EPA | Standards of Performance for New Stationary Sources, Test Method 2H - Revision EPA-HQ-OAR-2008-0697 | Impact of Vicous Shear Wall Effect on Flow Measurement in Rectangular Ducts - Final Report, February 2003 | Supporting & Related Material | Publication - Copyrighted Materials | 2009-08-25T04:00:00Z | 2009 | 8 | 2011-10-26T17:03:11Z | 0 | 0 | 09000064809e66ac |
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;