documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OW-2017-0584" 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)
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-HQ-OW-2017-0584-0303 | EPA | None EPA-HQ-OW-2017-0584 | Response to Comments Final | Supporting & Related Material | Comment Response | 2018-07-30T04:00:00Z | 2018 | 7 | 2018-12-07T03:07:13Z | 0 | 0 | 09000064832dd6ee | |||
| EPA-HQ-OW-2017-0584-0302 | EPA | None EPA-HQ-OW-2017-0584 | Idaho Voluntary Transfer of Primacy of Class II Underground Injection Control Program | Rule | Final Rule | 2018-07-30T04:00:00Z | 2018 | 7 | 2018-12-07T03:07:12Z | 2018-16245 | 0 | 0 | 09000064835829cb | ||
| EPA-HQ-OW-2017-0584-0301 | EPA | None EPA-HQ-OW-2017-0584 | Public Hearing Comments for Docket | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2018-04-25T04:00:00Z | 2018 | 4 | 2018-04-26T12:47:52Z | 0 | 0 | 09000064831311b0 | |||
| EPA-HQ-OW-2017-0584-0240 | EPA | None EPA-HQ-OW-2017-0584 | FAQ and Clarifying Information on 82 FR 55968 | Supporting & Related Material | Publication - USEPA | 2018-01-18T05:00:00Z | 2018 | 1 | 2018-01-19T02:01:06Z | 0 | 0 | 0900006482df241a | |||
| EPA-HQ-OW-2017-0584-0239 | EPA | None EPA-HQ-OW-2017-0584 | Public Hearing Presentation on January 8, 2018 | Supporting & Related Material | Meeting Materials | 2018-01-18T05:00:00Z | 2018 | 1 | 2018-01-19T02:00:27Z | 0 | 0 | 0900006482de24bf | |||
| EPA-HQ-OW-2017-0584-0238 | EPA | None EPA-HQ-OW-2017-0584 | Presentation to the IOGCC on December 7, 2017 | Supporting & Related Material | Meeting Materials | 2018-01-16T05:00:00Z | 2018 | 1 | 2018-01-17T03:24:55Z | 0 | 0 | 0900006482de24be | |||
| EPA-HQ-OW-2017-0584-0237 | EPA | None EPA-HQ-OW-2017-0584 | Sign-in Sheet for 1/8/18 Public Hearing | Supporting & Related Material | Meeting Materials | 2018-01-16T05:00:00Z | 2018 | 1 | 2018-01-17T03:25:06Z | 0 | 0 | 0900006482dd798d | |||
| EPA-HQ-OW-2017-0584-0001 | EPA | None EPA-HQ-OW-2017-0584 | State of Idaho Voluntary Transfer of Primacy of the Class II Underground Injection Control Program to the Environmental Protection Agency | Proposed Rule | 2017-11-27T05:00:00Z | 2017 | 11 | 2017-11-27T05:00:00Z | 2018-01-12T04:59:59Z | 2018-04-11T01:04:01Z | 2017-24637 | 0 | 0 | 0900006482cae42a |
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;