documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FWS", docket_id = "FWS-R6-ES-2014-0048" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date (date), comment_start_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-0201 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | USFWS Whooping Crane Whitepaper Final with Attachments | Supporting & Related Material | Report | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T14:26:28Z | 0 | 0 | 0900006483a3aa0b | |||
| FWS-R6-ES-2014-0048-0199 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project Public Comment Report | Supporting & Related Material | Report | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T14:26:26Z | 0 | 0 | 0900006483a3aa09 | |||
| FWS-R6-ES-2014-0048-0198 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project HCP Final Restoration Management Plan | Supporting & Related Material | Environmental Report | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T14:26:25Z | 0 | 0 | 0900006483a3a9fc | |||
| FWS-R6-ES-2014-0048-0195 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project Final Environmental Impact Statement | Supporting & Related Material | Environmental Impact Statement | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T14:26:22Z | 0 | 0 | 0900006483a3a9f9 | |||
| FWS-R6-ES-2014-0048-0196 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project Final Habitat Conservation Plan | Supporting & Related Material | Environmental Report | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T14:26:23Z | 0 | 0 | 0900006483a3a9fa | |||
| FWS-R6-ES-2014-0048-0193 | 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 and Habitat Conservation Plan for the R-Project Transmission Line; Final Environmental Impact Statement | Notice | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T05:00:00Z | 2019-02-08T14:25:00Z | 2019-01600 | 0 | 0 | 0900006483a562e3 | ||
| FWS-R6-ES-2014-0048-0200 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | USFWS Response to Request to Supplement Environmental Impact Statement | Supporting & Related Material | Report | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T14:26:27Z | 0 | 0 | 0900006483a3aa0a | |||
| FWS-R6-ES-2014-0048-0194 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project Draft Record of Decision | Supporting & Related Material | Studies and Reports | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T14:26:21Z | 0 | 0 | 0900006483a3a9f8 | |||
| FWS-R6-ES-2014-0048-0197 | FWS | Environmental Impact Statement and Habitat Conservation Plan for the R-Project Transmission Line in Nebraska FWS-R6-ES-2014-0048 | R-Project Final Migratory Bird Conservation Plan | Supporting & Related Material | Environmental Report | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T14:26:24Z | 0 | 0 | 0900006483a3a9fb |
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;