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-0038" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2002-0038-0101 | EPA | National Emission Standards for Hazardous Air Pollutants: Requirements for Control Technology Determinations for Major Sources in Accordance With Clean Air Act Section, Section 112(g) and 112(j) EPA-HQ-OAR-2002-0038 | Mossville petition for panel rehearing | Supporting & Related Material | Petition | 2008-07-16T04:00:00Z | 2008 | 7 | 2008-07-16T13:47:03Z | 0 | 0 | 090000648064e5dc | |||
| EPA-HQ-OAR-2002-0038-0100 | EPA | National Emission Standards for Hazardous Air Pollutants: Requirements for Control Technology Determinations for Major Sources in Accordance With Clean Air Act Section, Section 112(g) and 112(j) EPA-HQ-OAR-2002-0038 | June 4, 2008 Office of Management and Budget (OMB)/American Forest & Paper Association (AF&PA) Meeting Handout | Supporting & Related Material | Letter, Memorandum, Email | 2008-07-16T04:00:00Z | 2008 | 7 | 2008-07-16T13:47:02Z | 0 | 0 | 090000648064e59b | |||
| EPA-HQ-OAR-2002-0038-0102 | EPA | National Emission Standards for Hazardous Air Pollutants: Requirements for Control Technology Determinations for Major Sources in Accordance With Clean Air Act Section, Section 112(g) and 112(j) EPA-HQ-OAR-2002-0038 | Boiler MACT - EPA Reply on Motion for Partial Vacatur | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2008-07-16T04:00:00Z | 2008 | 7 | 2008-07-16T13:47:04Z | 0 | 0 | 090000648064e61d | |||
| EPA-HQ-OAR-2002-0038-0099 | EPA | National Emission Standards for Hazardous Air Pollutants: Requirements for Control Technology Determinations for Major Sources in Accordance With Clean Air Act Section, Section 112(g) and 112(j) EPA-HQ-OAR-2002-0038 | EPA Response to AF&PA Paper Entitled "MACT Hammer ICR and Importance of Court Vacatur of Boiler MACT" | Supporting & Related Material | Letter, Memorandum, Email | 2008-06-18T04:00:00Z | 2008 | 6 | 2008-06-18T18:15:07Z | 0 | 0 | 090000648062cca0 | |||
| EPA-HQ-OAR-2002-0038-0091 | EPA | National Emission Standards for Hazardous Air Pollutants: Requirements for Control Technology Determinations for Major Sources in Accordance With Clean Air Act Section, Section 112(g) and 112(j) EPA-HQ-OAR-2002-0038 | Agency Information Collection Activities; Submission to OMB for Review and Approval; Comment Request; Requirements for Control Technology Determinations From Major Sources in Accordance With Clean Air Act Sections, Sections 112(g) and 112(j); EPA ICR No. 1648.06, OMB Control No. 2060-0266 | Notice | Federal Register Document | 2008-04-17T04:00:00Z | 2008 | 4 | 2008-04-17T04:00:00Z | 2008-05-20T03:59:59Z | 2008-04-17T11:48:34Z | E8-08330 | 0 | 0 | 090000648050c276 |
| EPA-HQ-OAR-2002-0038-0092 | EPA | National Emission Standards for Hazardous Air Pollutants: Requirements for Control Technology Determinations for Major Sources in Accordance With Clean Air Act Section, Section 112(g) and 112(j) EPA-HQ-OAR-2002-0038 | Information Collection Request for Requirements for Control Technology Determinations from Major Sources in Accordance with Clean Air Act Sections, Sections 112(g) and 112(j). | Supporting & Related Material | ICR Supporting Statement | 2008-04-17T04:00:00Z | 2008 | 4 | 2008-04-17T11:23:01Z | 0 | 0 | 09000064804f8593 |
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;