documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FWS", docket_id = "FWS-R6-ES-2018-0055" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-R6-ES-2018-0055-0002 | FWS | Proposed Threatened Species Status for Chapin Mesa Milkvetch and Proposed Designation of Critical Habitat FWS-R6-ES-2018-0055 | Conservation Plans - See Attachments for Individual Files | Supporting & Related Material | Environmental Report | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T12:05:21Z | 0 | 0 | 090000648485be41 | |||
| FWS-R6-ES-2018-0055-0003 | FWS | Proposed Threatened Species Status for Chapin Mesa Milkvetch and Proposed Designation of Critical Habitat FWS-R6-ES-2018-0055 | Draft Economic Analysis of CH - See Attachments for Individual Files | Supporting & Related Material | Economic Analysis | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T12:05:22Z | 0 | 0 | 090000648485be42 | |||
| FWS-R6-ES-2018-0055-0001 | FWS | Proposed Threatened Species Status for Chapin Mesa Milkvetch and Proposed Designation of Critical Habitat FWS-R6-ES-2018-0055 | Endangered and Threatened Wildlife and Plants: Threatened Species Status for Chapin Mesa Milkvetch and Designation of Critical Habitat | Proposed Rule | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T04:00:00Z | 2020-11-17T04:59:59Z | 2020-11-24T02:01:58Z | 2020-19481 | 0 | 0 | 090000648485ff6e | |
| FWS-R6-ES-2018-0055-0008 | FWS | Proposed Threatened Species Status for Chapin Mesa Milkvetch and Proposed Designation of Critical Habitat FWS-R6-ES-2018-0055 | Literature Cited ASSC proposed rule | Supporting & Related Material | Reference (external attachments) | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T12:05:24Z | 0 | 0 | 090000648485cab9 | |||
| FWS-R6-ES-2018-0055-0004 | FWS | Proposed Threatened Species Status for Chapin Mesa Milkvetch and Proposed Designation of Critical Habitat FWS-R6-ES-2018-0055 | References - See Attachments for Individual Files | Supporting & Related Material | Reference (external attachments) | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T12:05:22Z | 0 | 0 | 090000648485be43 | |||
| FWS-R6-ES-2018-0055-0005 | FWS | Proposed Threatened Species Status for Chapin Mesa Milkvetch and Proposed Designation of Critical Habitat FWS-R6-ES-2018-0055 | SSA Peer Review Comments - See Attachments for Individual Files | Supporting & Related Material | Report | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T12:05:23Z | 0 | 0 | 090000648485be44 | |||
| FWS-R6-ES-2018-0055-0007 | FWS | Proposed Threatened Species Status for Chapin Mesa Milkvetch and Proposed Designation of Critical Habitat FWS-R6-ES-2018-0055 | Chapin Mesa Milkvetch Proposed Critical Habitat Coordinates_All Units | Supporting & Related Material | Technical Support Document | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T12:05:24Z | 0 | 0 | 090000648485cab8 | |||
| FWS-R6-ES-2018-0055-0006 | FWS | Proposed Threatened Species Status for Chapin Mesa Milkvetch and Proposed Designation of Critical Habitat FWS-R6-ES-2018-0055 | Species Status Assessment Report for the Chapin Mesa Milkvetch, January 2018 | Supporting & Related Material | Assessment Document or Analysis | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T12:05:23Z | 0 | 0 | 090000648485cab7 |
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;