documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "EPA" and docket_id = "EPA-R06-OAR-2008-0063" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA · 8 ✖
| 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-R06-OAR-2008-0063-0015 | EPA | None EPA-R06-OAR-2008-0063 | OK008.15 Oklahoma Request for Delegation of National Emission Standards for Hazardous Air Pollutants (NESHAP) submitted to EPA June 25, 2018 (OK-59). 2 pages zxp | Supporting & Related Material | 2019-10-24T04:00:00Z | 2019 | 10 | 2019-10-24T23:51:17Z | 0 | 0 | 09000064840ef2ac | ||||
| EPA-R06-OAR-2008-0063-0014 | EPA | None EPA-R06-OAR-2008-0063 | OK008.14 Oklahoma; National Emission Standards for Hazardous Air Pollutants; Delegation of Authority to Oklahoma, Final rule. 7 pages | Rule | 2018-10-22T04:00:00Z | 2018 | 10 | 2018-10-22T04:00:00Z | 2018-10-22T16:43:17Z | 2018-22999 | 0 | 0 | 090000648383772d | ||
| EPA-R06-OAR-2008-0063-0007 | EPA | None EPA-R06-OAR-2008-0063 | OK008.07 National Emission Standards for Hazardous Air Pollutants; Delegation of Authority to Oklahoma, Proposed rule, 4 pages. | Proposed Rule | 2018-08-10T04:00:00Z | 2018 | 8 | 2018-08-10T04:00:00Z | 2018-09-11T03:59:59Z | 2018-09-10T01:01:51Z | 2018-17139 | 0 | 0 | 0900006483600546 | |
| EPA-R06-OAR-2008-0063-0008 | EPA | None EPA-R06-OAR-2008-0063 | OK008.08 EPA Technical Support Document. 10 pages y7t | Supporting & Related Material | 2018-08-10T04:00:00Z | 2018 | 8 | 2018-08-10T16:55:38Z | 0 | 0 | 090000648356b115 | ||||
| EPA-R06-OAR-2008-0063-0006 | EPA | None EPA-R06-OAR-2008-0063 | OK008.06 Oklahoma; Withdrawal of Direct Final Rule: National Emission Standards for Hazardous Air Pollutants; Delegation of Authority to Oklahoma. 1 page | Rule | 2015-04-21T04:00:00Z | 2015 | 4 | 2015-04-21T04:00:00Z | 2015-04-21T15:09:57Z | 2015-09201 | 0 | 0 | 0900006481ab0c41 | ||
| EPA-R06-OAR-2008-0063-0002 | EPA | None EPA-R06-OAR-2008-0063 | OK008.02 Oklahoma; National Emission Standards for Hazardous Air Pollutants; Delegation of Authority to Oklahoma, Proposed rule. 2 pages | Proposed Rule | 2015-02-24T05:00:00Z | 2015 | 2 | 2015-02-24T05:00:00Z | 2015-03-27T03:59:59Z | 2015-02-24T17:31:28Z | 2015-03801 | 0 | 0 | 0900006481a119f1 | |
| EPA-R06-OAR-2008-0063-0001 | EPA | None EPA-R06-OAR-2008-0063 | OK008.01 Oklahoma; National Emission Standards for Hazardous Air Pollutants; Delegation of Authority to Oklahoma, Direct final rule. 7 pages | Rule | 2015-02-24T05:00:00Z | 2015 | 2 | 2015-02-24T05:00:00Z | 2015-03-27T03:59:59Z | 2015-04-19T02:00:43Z | 2015-03803 | 0 | 0 | 0900006481a11cef | |
| EPA-R06-OAR-2008-0063-0003 | EPA | None EPA-R06-OAR-2008-0063 | OK008.03 Oklahoma Request for Delegation of MACT Standards, submitted to EPA January 11, 2008 (OK-32). 55 pages 2.1 MB s5j | Supporting & Related Material | Report | 2015-02-24T05:00:00Z | 2015 | 2 | 2015-02-24T19:36:52Z | 0 | 0 | 0900006481323730 |
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;