documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-R09-OAR-2017-0163" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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-R09-OAR-2017-0163-0012 | EPA | None EPA-R09-OAR-2017-0163 | Section 6 - Comments | Supporting & Related Material | 2017-05-23T04:00:00Z | 2017 | 5 | 2018-12-08T13:38:09Z | 0 | 0 | 0900006482601a25 | ||||
| EPA-R09-OAR-2017-0163-0013 | EPA | None EPA-R09-OAR-2017-0163 | Docket Index for Final US Bureau of Reclamation - Tribal Minor NSR Permit # T-0007-CA | Supporting & Related Material | 2017-05-23T04:00:00Z | 2017 | 5 | 2017-05-31T02:32:30Z | 0 | 0 | 090000648260558d | ||||
| EPA-R09-OAR-2017-0163-0010 | EPA | None EPA-R09-OAR-2017-0163 | Final Bureau of Reclamation Minor New Source Review (NSR) Permit # T-0007-CA | Other | 2017-05-23T04:00:00Z | 2017 | 5 | 2017-05-23T04:00:00Z | 2018-12-08T13:38:09Z | 0 | 0 | 0900006482601a24 | |||
| EPA-R09-OAR-2017-0163-0011 | EPA | None EPA-R09-OAR-2017-0163 | Section 7 - Final Permit | Supporting & Related Material | 2017-05-23T04:00:00Z | 2017 | 5 | 2017-05-31T02:32:49Z | 0 | 0 | 0900006482604bb6 | ||||
| EPA-R09-OAR-2017-0163-0002 | EPA | None EPA-R09-OAR-2017-0163 | Draft Bureau of Reclamation Minor New Source Review (NSR) Permit # T-0007-CA | Other | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-24T04:00:00Z | 2017-04-25T03:59:59Z | 2017-04-25T01:00:23Z | 0 | 0 | 090000648251da66 | ||
| EPA-R09-OAR-2017-0163-0006 | EPA | None EPA-R09-OAR-2017-0163 | Section 2 - Proposed Permit and Related Documents | Supporting & Related Material | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:42:59Z | 0 | 0 | 090000648251da18 | ||||
| EPA-R09-OAR-2017-0163-0007 | EPA | None EPA-R09-OAR-2017-0163 | Docket Index for Proposed US Bureau of Reclamation - Tribal Minor NSR Permit # T-0007-CA | Supporting & Related Material | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:44:06Z | 0 | 0 | 090000648251da64 | ||||
| EPA-R09-OAR-2017-0163-0004 | EPA | None EPA-R09-OAR-2017-0163 | Section 4 - National Historic Preservation Act | Supporting & Related Material | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:43:36Z | 0 | 0 | 090000648251d2ee | ||||
| EPA-R09-OAR-2017-0163-0003 | EPA | None EPA-R09-OAR-2017-0163 | Section 3 - Endangered Species Act Section 7 Consultation | Supporting & Related Material | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:43:15Z | 0 | 0 | 090000648251d2ea | ||||
| EPA-R09-OAR-2017-0163-0005 | EPA | None EPA-R09-OAR-2017-0163 | Section 5 - Other Supporting Material | Supporting & Related Material | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-25T00:43:57Z | 0 | 0 | 090000648251d361 | ||||
| EPA-R09-OAR-2017-0163-0001 | EPA | None EPA-R09-OAR-2017-0163 | Section 1 - Permit Application Documents | Supporting & Related Material | 2017-03-23T04:00:00Z | 2017 | 3 | 2017-03-24T00:51:35Z | 0 | 0 | 09000064825182e9 |
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;