documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FWS-R8-ES-2021-0090" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-R8-ES-2021-0090-0002 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | Sada 2019 SMNRA Rainbow Spring and 2017 report Email to Kallstrom_Redacted | Supporting & Related Material | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T13:34:18Z | 0 | 0 | 0900006484dab545 | ||||
| FWS-R8-ES-2021-0090-0003 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | Wilson 2021 20201208_SW_Nevada_pyrg_SSA DRAFT Review Comment Matrix_DEVA | Supporting & Related Material | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T13:34:21Z | 0 | 0 | 0900006484dab546 | ||||
| FWS-R8-ES-2021-0090-0006 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | 20090217_Great-Basin-Springsnail-Petition | Supporting & Related Material | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T13:34:29Z | 0 | 0 | 0900006484dab549 | ||||
| FWS-R8-ES-2021-0090-0001 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | Endangered and Threatened Species: 17 Species Not Warranted for Listing as Endangered or Threatened Species | Proposed Rule | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T04:00:00Z | 2021-09-27T13:18:38Z | 2021-20823 | 0 | 0 | 0900006484dab0b3 | ||
| FWS-R8-ES-2021-0090-0009 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | 20210504_SSA_Nine Springsnails Ash Meadows Amargosa Valley | Supporting & Related Material | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T13:34:36Z | 0 | 0 | 0900006484dab31a | ||||
| FWS-R8-ES-2021-0090-0005 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | Sada 2017 Environmental and biological factors P. turbatrix | Supporting & Related Material | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T13:34:26Z | 0 | 0 | 0900006484dab548 | ||||
| FWS-R8-ES-2021-0090-0004 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | Sada 2016 data | Supporting & Related Material | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T13:34:24Z | 0 | 0 | 0900006484dab547 | ||||
| FWS-R8-ES-2021-0090-0007 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | 20210701_Sept 2021 12m NW Batch_SAF_10NVss_w_Dir_Sig_Block (1) | Supporting & Related Material | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T13:34:31Z | 0 | 0 | 0900006484dab318 | ||||
| FWS-R8-ES-2021-0090-0008 | FWS | Endangered and Threatened Wildlife and Plants; 17 Species Not Warranted for Listing as Endangered or Threatened Species; southwest Nevada pyrg FWS-R8-ES-2021-0090 | 20210412_SW_Nevada_pyrg_SSA | Supporting & Related Material | 2021-09-27T04:00:00Z | 2021 | 9 | 2021-09-27T13:34:34Z | 0 | 0 | 0900006484dab319 |
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;