documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-R10-OAR-2013-0005" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_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-R10-OAR-2013-0005-0022 | EPA | None EPA-R10-OAR-2013-0005 | 208 Letter, ODEQ, Controls Clarification | Supporting & Related Material | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-26T00:52:45Z | 0 | 0 | 0900006481bc8b40 | ||||
| EPA-R10-OAR-2013-0005-0023 | EPA | None EPA-R10-OAR-2013-0005 | 209 Note to Docket | Supporting & Related Material | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-26T00:52:37Z | 0 | 0 | 0900006481bc8b41 | ||||
| EPA-R10-OAR-2013-0005-0020 | EPA | None EPA-R10-OAR-2013-0005 | Air Quality State Implementation Plans; Approvals and Promulgations: Klamath Falls, OR, Nonattainment Area; Fine Particulate Matter Emissions Inventory and SIP Strengthening Measures | Rule | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-25T04:00:00Z | 2015-08-25T17:32:14Z | 2015-20903 | 0 | 0 | 0900006481c36e9d | ||
| EPA-R10-OAR-2013-0005-0021 | EPA | None EPA-R10-OAR-2013-0005 | 207 Letter - Public Comment, Klamath Attainment Plan 2012, 2012.9.4, signed | Supporting & Related Material | 2015-08-25T04:00:00Z | 2015 | 8 | 2015-08-26T00:52:32Z | 0 | 0 | 0900006481bc8b3f | ||||
| EPA-R10-OAR-2013-0005-0019 | EPA | None EPA-R10-OAR-2013-0005 | Adequacy Determinations: Klamath Falls, Oregon PM2.5 State Implementation Plan for TransportationConformity Purposes | Notice | 2015-07-31T04:00:00Z | 2015 | 7 | 2015-07-31T04:00:00Z | 2015-08-03T19:26:54Z | 2015-18832 | 0 | 0 | 0900006481bb4d53 |
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;