documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FWS-R1-ES-2020-0050" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, 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-R1-ES-2020-0050-1836 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Endangered and Threatened Species: Revised Designation of Critical Habitat for the Northern Spotted Owl | Rule | 2021-11-10T05:00:00Z | 2021 | 11 | 2021-11-10T13:24:55Z | 2021-24365 | 0 | 0 | 0900006484e3b797 | |||
| FWS-R1-ES-2020-0050-1837 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | 1- NSO rev FCH Literature Cited 10-28-2021 | Supporting & Related Material | 2021-11-10T05:00:00Z | 2021 | 11 | 2021-11-10T13:25:55Z | 0 | 0 | 0900006484dfefa9 | ||||
| FWS-R1-ES-2020-0050-1787 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Literature Cited – Proposed Revision to northern spotted owl critical habitat 6-17-2021 | Supporting & Related Material | Reference (external attachments) | 2021-07-20T04:00:00Z | 2021 | 7 | 2021-07-20T11:59:01Z | 0 | 0 | 0900006484c03257 | |||
| FWS-R1-ES-2020-0050-1786 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Endangered and Threatened Species: Revised Designation of Critical Habitat for the Northern Spotted Owl | Proposed Rule | 2021-07-20T04:00:00Z | 2021 | 7 | 2021-07-20T04:00:00Z | 2021-09-21T03:59:59Z | 2021-09-22T01:01:11Z | 2021-15414 | 0 | 0 | 0900006484c035b5 | |
| FWS-R1-ES-2020-0050-1783 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Literature Cited 4-26-2021 | Supporting & Related Material | Reference (external attachments) | 2021-04-30T04:00:00Z | 2021 | 4 | 2021-04-30T17:18:03Z | 0 | 0 | 0900006484abfbb1 | |||
| FWS-R1-ES-2020-0050-1784 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Henson Jan 7 21 memo response to Director nso ch | Supporting & Related Material | Memorandum | 2021-04-30T04:00:00Z | 2021 | 4 | 2021-04-30T17:18:36Z | 0 | 0 | 0900006484abfbb2 | |||
| FWS-R1-ES-2020-0050-1785 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Exclusion analysis NSO_07Jan2021GRW | Supporting & Related Material | Memorandum | 2021-04-30T04:00:00Z | 2021 | 4 | 2021-04-30T17:19:11Z | 0 | 0 | 0900006484abfbb3 | |||
| FWS-R1-ES-2020-0050-1782 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Endangered and Threatened Species: Revised Designation of Critical Habitat for the Northern Spotted Owl; Delay of Effective Date | Rule | 2021-04-30T04:00:00Z | 2021 | 4 | 2021-04-30T12:25:22Z | 2021-09108 | 0 | 0 | 0900006484abf037 | |||
| FWS-R1-ES-2020-0050-0579 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Endangered and Threatened Species: Revised Designation of Critical Habitat for the Northern Spotted Owl; Delay of Effective Date | Rule | 2021-03-01T05:00:00Z | 2021 | 3 | 2021-03-01T05:00:00Z | 2021-04-01T03:59:59Z | 2021-04-02T01:00:57Z | 2021-04209 | 0 | 0 | 0900006484a57251 | |
| FWS-R1-ES-2020-0050-0578 | FWS | Endangered and Threatened Wildlife and Plants; Revised Designation of Critical Habitat for the Northern Spotted Owl FWS-R1-ES-2020-0050 | Endangered and Threatened Species: Revised Designation of Critical Habitat for the Northern Spotted Owl | Rule | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T16:37:47Z | 2021-00484 | 0 | 0 | 09000064849f4065 |
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);