documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FWS", docket_id = "FWS-R6-ES-2014-0048" and posted_year = 2017 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)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FWS-R6-ES-2014-0048-0076 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | Endangered and Threatened Wildlife and Plants; Incidental Take Permit Application; Draft R-Project Transmission Line Habitat Conservation Plan for the American Burying Beetle and Draft Environmental Impact Statement | Notice | 2017-09-08T04:00:00Z | 2017 | 9 | 2017-09-08T04:00:00Z | 2017-11-08T04:59:59Z | 2017-12-30T02:02:10Z | 2017-18823 | 0 | 0 | 0900006482b17812 | |
| FWS-R6-ES-2014-0048-0059 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project Draft Habitat Conservation Plan (HCP) | Supporting & Related Material | Studies and Reports | 2017-05-12T04:00:00Z | 2017 | 5 | 2017-05-12T16:46:18Z | 0 | 0 | 09000064825abebc | |||
| FWS-R6-ES-2014-0048-0056 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | Endangered and Threatened Wildlife and Plants; Incidental Take Permit Application; Draft Habitat Conservation Plan for the R-Project Transmission Line and Draft Environmental Impact Statement | Notice | 2017-05-12T04:00:00Z | 2017 | 5 | 2017-05-12T04:00:00Z | 2017-07-12T03:59:59Z | 2017-07-12T13:04:12Z | 2017-09366 | 0 | 0 | 09000064825a7ff1 | |
| FWS-R6-ES-2014-0048-0060 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project Draft Migratory Bird Conservation Plan (MBCP) | Supporting & Related Material | Report | 2017-05-12T04:00:00Z | 2017 | 5 | 2017-05-12T16:47:08Z | 0 | 0 | 09000064825abebd | |||
| FWS-R6-ES-2014-0048-0061 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project Draft Restoration Management Plan | Supporting & Related Material | Report | 2017-05-12T04:00:00Z | 2017 | 5 | 2017-05-12T16:47:40Z | 0 | 0 | 09000064825abebe | |||
| FWS-R6-ES-2014-0048-0058 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | Draft Environmental Impact Statement (EIS) R-Project Transmission Line in Nebraska May 2017 | Supporting & Related Material | Environmental Impact Statement | 2017-05-12T04:00:00Z | 2017 | 5 | 2017-05-12T16:43:13Z | 0 | 0 | 09000064825abebb |
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;