documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OW-2014-0359" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-OW-2014-0359-0023 | EPA | None EPA-HQ-OW-2014-0359 | US EPA UIC Program ICR 2019 | Supporting & Related Material | ICR Supporting Statement | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-22T03:32:07Z | 0 | 0 | 090000648399d850 | |||
| EPA-HQ-OW-2014-0359-0024 | EPA | None EPA-HQ-OW-2014-0359 | Appendix A Respondent Burden Estimates and Universe | Supporting & Related Material | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-22T03:33:21Z | 0 | 0 | 090000648399d855 | ||||
| EPA-HQ-OW-2014-0359-0025 | EPA | None EPA-HQ-OW-2014-0359 | Appendix B Federal Register Notice on UIC Program Reporting Requirements | Supporting & Related Material | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-22T03:34:04Z | 0 | 0 | 090000648399e2db | ||||
| EPA-HQ-OW-2014-0359-0027 | EPA | None EPA-HQ-OW-2014-0359 | Appendix D Reporting Forms | Supporting & Related Material | Form | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-22T03:32:35Z | 0 | 0 | 090000648399d854 | |||
| EPA-HQ-OW-2014-0359-0026 | EPA | None EPA-HQ-OW-2014-0359 | Appendix C UIC Program Owner or Operator Burden Reduction Efforts | Supporting & Related Material | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-22T03:33:43Z | 0 | 0 | 090000648399d856 | ||||
| EPA-HQ-OW-2014-0359-0022 | EPA | None EPA-HQ-OW-2014-0359 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Underground Injection Control Program | Notice | Information Collection Request (ICR) | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-21T05:00:00Z | 2019-01-23T04:59:59Z | 2018-12-21T16:37:09Z | 2018-27581 | 0 | 0 | 09000064839be3ce |
| EPA-HQ-OW-2014-0359-0017 | EPA | None EPA-HQ-OW-2014-0359 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Underground Injection Control Program | Notice | Information Collection Request (ICR) | 2018-06-06T04:00:00Z | 2018 | 6 | 2018-06-06T04:00:00Z | 2018-08-07T03:59:59Z | 2018-06-14T01:03:53Z | 2018-12073 | 0 | 0 | 09000064833457f7 |
| EPA-HQ-OW-2014-0359-0019 | EPA | None EPA-HQ-OW-2014-0359 | UIC Program ICR Supporting Statement Appendix A 20180606 | Supporting & Related Material | ICR Supporting Statement | 2018-06-06T04:00:00Z | 2018 | 6 | 2018-06-07T01:55:38Z | 0 | 0 | 090000648334163e | |||
| EPA-HQ-OW-2014-0359-0018 | EPA | None EPA-HQ-OW-2014-0359 | UIC Program ICR Supporting Statement docket 20180606 | Supporting & Related Material | ICR Supporting Statement | 2018-06-06T04:00:00Z | 2018 | 6 | 2018-06-07T01:56:13Z | 0 | 0 | 090000648334163d |
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;