documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FWS-R4-ES-2019-0106" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FWS-R4-ES-2019-0106-0479 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | Florida Bonneted Bat Proposed CH Peer Review OI_Armstrong | Supporting & Related Material | Reference (external attachments) | 2020-09-29T04:00:00Z | 2020 | 9 | 2020-09-29T12:30:16Z | 0 | 0 | 090000648489813f | |||
| FWS-R4-ES-2019-0106-0478 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | Florida Bonneted Bat Proposed CH Peer Review COI_form_Gamba-Rios | Supporting & Related Material | Reference (external attachments) | 2020-09-29T04:00:00Z | 2020 | 9 | 2020-09-29T12:30:14Z | 0 | 0 | 090000648489813e | |||
| FWS-R4-ES-2019-0106-0477 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | FBB pCH Combined Peer Review | Supporting & Related Material | Reference (external attachments) | 2020-09-29T04:00:00Z | 2020 | 9 | 2020-09-29T12:30:13Z | 0 | 0 | 090000648489813d | |||
| FWS-R4-ES-2019-0106-0005 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | FBB Land Value memo_2.6.20 | Supporting & Related Material | Environmental Report | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T15:46:56Z | 0 | 0 | 09000064846dee2d | |||
| FWS-R4-ES-2019-0106-0003 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | 20200210_memo_SFESO to Baxter_FBB pCH IEM for EconAnalysis | Supporting & Related Material | Environmental Report | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T15:46:55Z | 0 | 0 | 09000064846dee2b | |||
| FWS-R4-ES-2019-0106-0001 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | Endangered and Threatened Species: Designation of Critical Habitat for Florida Bonneted Bat | Proposed Rule | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T04:00:00Z | 2020-08-11T03:59:59Z | 2022-11-22T02:00:42Z | 2020-10840 | 0 | 0 | 09000064846ddd93 | |
| FWS-R4-ES-2019-0106-0004 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | FBB economics_screening memo_2.14.20 | Supporting & Related Material | Environmental Report | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T15:46:55Z | 0 | 0 | 09000064846dee2c | |||
| FWS-R4-ES-2019-0106-0002 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | Literature Cited with reference files available as attachments | Supporting & Related Material | Reference (external attachments) | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T12:05:10Z | 0 | 0 | 09000064845cbdd9 | |||
| FWS-R4-ES-2019-0106-0007 | FWS | Endangered and Threatened Wildlife and Plants; Designation of Critical Habitat for Florida Bonneted Bat FWS-R4-ES-2019-0106 | FBB_pCH_Conservation Lands | Supporting & Related Material | Technical Support Document | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T18:08:53Z | 0 | 0 | 09000064846dfa8e |
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;