documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FWS-R1-ES-2020-0076" 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)
document_type 3
agency_id 1
- FWS 8
| 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-R1-ES-2020-0076-0022 | FWS | Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule FWS-R1-ES-2020-0076 | Mount Rainier White-tailed Ptarmigan Species Status Assessment Version 2 | Supporting & Related Material | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T12:39:45Z | 0 | 0 | 09000064865a7165 | ||||
| FWS-R1-ES-2020-0076-0020 | FWS | Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule FWS-R1-ES-2020-0076 | Endangered and Threatened Species: Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule | Rule | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T12:39:22Z | 2024-14315 | 0 | 0 | 09000064865d8b61 | |||
| FWS-R1-ES-2020-0076-0021 | FWS | Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule FWS-R1-ES-2020-0076 | Mount Rainier White-tailed Ptarmigan Final Rule Literature Cited | Supporting & Related Material | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T12:39:43Z | 0 | 0 | 09000064865a7164 | ||||
| FWS-R1-ES-2020-0076-0003 | FWS | Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule FWS-R1-ES-2020-0076 | MRWTP- SSA Recreation Supplemental Analysis | Supporting & Related Material | Environmental Report | 2021-06-15T04:00:00Z | 2021 | 6 | 2021-06-15T12:16:53Z | 0 | 0 | 0900006484b7c4b5 | |||
| FWS-R1-ES-2020-0076-0004 | FWS | Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule FWS-R1-ES-2020-0076 | MRWTP Peer Reviews -- See attachments | Supporting & Related Material | Assessment Document or Analysis | 2021-06-15T04:00:00Z | 2021 | 6 | 2021-06-15T12:16:56Z | 0 | 0 | 0900006484b7f6fd | |||
| FWS-R1-ES-2020-0076-0005 | FWS | Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule FWS-R1-ES-2020-0076 | MRWTP Literature Cited for Proposed Rule -- See attachments for individual references | Supporting & Related Material | Reference (external attachments) | 2021-06-15T04:00:00Z | 2021 | 6 | 2021-06-15T13:57:30Z | 0 | 0 | 0900006484b7c4b4 | |||
| FWS-R1-ES-2020-0076-0002 | FWS | Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule FWS-R1-ES-2020-0076 | MRWTP- SSA v1 2020 | Supporting & Related Material | Environmental Report | 2021-06-15T04:00:00Z | 2021 | 6 | 2021-06-15T12:16:49Z | 0 | 0 | 0900006484b7c4b6 | |||
| FWS-R1-ES-2020-0076-0001 | FWS | Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule FWS-R1-ES-2020-0076 | Endangered and Threatened Species: Threatened Species Status for Mount Rainier White-tailed Ptarmigan with a Section 4(d) Rule | Proposed Rule | 2021-06-15T04:00:00Z | 2021 | 6 | 2021-06-15T04:00:00Z | 2021-08-17T03:59:59Z | 2021-09-01T01:00:54Z | 2021-12460 | 0 | 0 | 0900006484b7f58b |
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;