documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R09-OAR-2015-0673" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-R09-OAR-2015-0673-0008 | EPA | None EPA-R09-OAR-2015-0673 | Air Quality State Implementation Plans; Approvals and Promulgations: Nevada Air Plan Revisions, Clark County; Partial Approval and Disapproval | Rule | 2016-01-14T05:00:00Z | 2016 | 1 | 2016-01-14T05:00:00Z | 2016-01-14T17:51:37Z | 2016-00340 | 0 | 0 | 0900006481e0d2a8 | ||
| EPA-R09-OAR-2015-0673-0005 | EPA | None EPA-R09-OAR-2015-0673 | D. Rule Stringency Analysis 5.27.2015 | Supporting & Related Material | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:38:35Z | 0 | 0 | 0900006481c945dd | ||||
| EPA-R09-OAR-2015-0673-0001 | EPA | None EPA-R09-OAR-2015-0673 | Air Quality State Implementation Plans; Approvals and Promulgations: Nevada;, Clark County | Proposed Rule | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-05T05:00:00Z | 2015-12-08T04:59:59Z | 2015-11-05T17:18:15Z | 2015-28276 | 0 | 0 | 0900006481d13f8b | |
| EPA-R09-OAR-2015-0673-0003 | EPA | None EPA-R09-OAR-2015-0673 | B. Clark County DAQ Letter to Nevada DEP Nov 5 2014 | Supporting & Related Material | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:38:48Z | 0 | 0 | 0900006481c945db | ||||
| EPA-R09-OAR-2015-0673-0006 | EPA | None EPA-R09-OAR-2015-0673 | E. Analysis of Remaining EPA Issues with Repeal of AQRs 29-52-60 | Supporting & Related Material | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:38:29Z | 0 | 0 | 0900006481c945de | ||||
| EPA-R09-OAR-2015-0673-0007 | EPA | None EPA-R09-OAR-2015-0673 | Technical Support Document - Rescission, Clark County Air Quality Regulations Sections 29, 30, 52, and 60 | Supporting & Related Material | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:39:00Z | 0 | 0 | 0900006481d152ba | ||||
| EPA-R09-OAR-2015-0673-0002 | EPA | None EPA-R09-OAR-2015-0673 | A. Materials and Staff Analysis for Clark County's November 2014 Submittal | Supporting & Related Material | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:38:54Z | 0 | 0 | 0900006481c945da | ||||
| EPA-R09-OAR-2015-0673-0004 | EPA | None EPA-R09-OAR-2015-0673 | C. NDEP Transmittal letter to EPA | Supporting & Related Material | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:38:42Z | 0 | 0 | 0900006481c945dc |
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;