documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FWS-R1-ES-2020-0079" 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-0079-0021 | FWS | Endangered and Threatened Wildlife and Plants; Reclassifying the Hawaiian stilt from Endangered to Threatened with a 4(d) Rule FWS-R1-ES-2020-0079 | Endangered and Threatened Species: Reclassification of the Hawaiian Stilt from Endangered to Threatened | Proposed Rule | 2021-06-23T04:00:00Z | 2021 | 6 | 2021-06-23T04:00:00Z | 2021-07-24T03:59:59Z | 2021-07-25T01:00:41Z | 2021-13290 | 0 | 0 | 0900006484ba4546 | |
| FWS-R1-ES-2020-0079-0013 | FWS | Endangered and Threatened Wildlife and Plants; Reclassifying the Hawaiian stilt from Endangered to Threatened with a 4(d) Rule FWS-R1-ES-2020-0079 | Literature Cited - In litt., see attachments for individual files | Supporting & Related Material | Reference (external attachments) | 2021-04-30T04:00:00Z | 2021 | 4 | 2021-04-30T20:48:52Z | 0 | 0 | 0900006484ac0734 | |||
| FWS-R1-ES-2020-0079-0012 | FWS | Endangered and Threatened Wildlife and Plants; Reclassifying the Hawaiian stilt from Endangered to Threatened with a 4(d) Rule FWS-R1-ES-2020-0079 | Literature Cited - Personal Communications, see attachments for individual files | Supporting & Related Material | Reference (external attachments) | 2021-04-30T04:00:00Z | 2021 | 4 | 2021-04-30T20:44:15Z | 0 | 0 | 0900006484ac0733 | |||
| FWS-R1-ES-2020-0079-0011 | FWS | Endangered and Threatened Wildlife and Plants; Reclassifying the Hawaiian stilt from Endangered to Threatened with a 4(d) Rule FWS-R1-ES-2020-0079 | Hawaiian Stilt 5-year Review | Supporting & Related Material | Environmental Report | 2021-04-29T04:00:00Z | 2021 | 4 | 2021-04-30T20:40:34Z | 0 | 0 | 0900006484abd1a9 | |||
| FWS-R1-ES-2020-0079-0010 | FWS | Endangered and Threatened Wildlife and Plants; Reclassifying the Hawaiian stilt from Endangered to Threatened with a 4(d) Rule FWS-R1-ES-2020-0079 | Literature Cited - See attachments for individual files | Supporting & Related Material | Reference (external attachments) | 2021-04-29T04:00:00Z | 2021 | 4 | 2021-05-03T12:17:15Z | 0 | 0 | 0900006484abd1a8 | |||
| FWS-R1-ES-2020-0079-0001 | FWS | Endangered and Threatened Wildlife and Plants; Reclassifying the Hawaiian stilt from Endangered to Threatened with a 4(d) Rule FWS-R1-ES-2020-0079 | Endangered and Threatened Species: Reclassification of the Hawaiian Stilt from Endangered to Threatened | Proposed Rule | 2021-03-25T04:00:00Z | 2021 | 3 | 2021-03-25T04:00:00Z | 2021-05-25T03:59:59Z | 2021-05-26T01:00:38Z | 2021-05846 | 0 | 0 | 0900006484a7a36f |
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;