documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FWS-HQ-ES-2021-0043" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 6
| 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-HQ-ES-2021-0043-0120 | FWS | Endangered and Threatened Wildlife and Plants; Threatened Species Status with Section 4(d) Rule for Emperor Penguin FWS-HQ-ES-2021-0043 | Endangered and Threatened Wildlife and Plants: Threatened Species Status for Emperor Penguin with Section 4(d) Rule | Rule | 2022-10-26T04:00:00Z | 2022 | 10 | 2022-10-26T12:25:24Z | 2022-23164 | 0 | 0 | 090000648545ca25 | |||
| FWS-HQ-ES-2021-0043-0121 | FWS | Endangered and Threatened Wildlife and Plants; Threatened Species Status with Section 4(d) Rule for Emperor Penguin FWS-HQ-ES-2021-0043 | NOTE TO FILE: Consideration of Pre-2019 and 2019 Regulations in Light of Recent Court Actions Regarding the Emperor Penguin Final Listing October 13, 2022 | Supporting & Related Material | 2022-10-26T04:00:00Z | 2022 | 10 | 2022-10-26T12:25:58Z | 0 | 0 | 090000648543078d | ||||
| FWS-HQ-ES-2021-0043-0122 | FWS | Endangered and Threatened Wildlife and Plants; Threatened Species Status with Section 4(d) Rule for Emperor Penguin FWS-HQ-ES-2021-0043 | Literature Cited Emperor penguin final listing rule | Supporting & Related Material | 2022-10-26T04:00:00Z | 2022 | 10 | 2022-10-26T12:26:06Z | 0 | 0 | 090000648543078e | ||||
| FWS-HQ-ES-2021-0043-0003 | FWS | Endangered and Threatened Wildlife and Plants; Threatened Species Status with Section 4(d) Rule for Emperor Penguin FWS-HQ-ES-2021-0043 | SSA for Emperor Penguin | Supporting & Related Material | Assessment Document or Analysis | 2021-08-04T04:00:00Z | 2021 | 8 | 2021-08-04T12:03:59Z | 0 | 0 | 0900006484c17eff | |||
| FWS-HQ-ES-2021-0043-0001 | FWS | Endangered and Threatened Wildlife and Plants; Threatened Species Status with Section 4(d) Rule for Emperor Penguin FWS-HQ-ES-2021-0043 | Endangered and Threatened Species: Threatened Species Status with Section 4(d) Rule for Emperor Penguin | Proposed Rule | 2021-08-04T04:00:00Z | 2021 | 8 | 2021-08-04T04:00:00Z | 2021-10-05T03:59:59Z | 2021-10-13T01:01:22Z | 2021-15949 | 0 | 0 | 0900006484c27ea8 | |
| FWS-HQ-ES-2021-0043-0002 | FWS | Endangered and Threatened Wildlife and Plants; Threatened Species Status with Section 4(d) Rule for Emperor Penguin FWS-HQ-ES-2021-0043 | Literature Cited for Emperor penguin pL | Supporting & Related Material | Reference (external attachments) | 2021-08-04T04:00:00Z | 2021 | 8 | 2021-08-04T12:03:52Z | 0 | 0 | 0900006484c17efe |
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;