documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "FWS", docket_id = "FWS-HQ-ES-2019-0014" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, comment_start_date (date), comment_end_date (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-HQ-ES-2019-0014-0004 | FWS | Status Review for the Peary Caribou and Proposed Listing for the Dolphin and Union Caribou with a 4(d) Rule FWS-HQ-ES-2019-0014 | Peary Caribou Species Report | Supporting & Related Material | Environmental Report | 2021-08-31T04:00:00Z | 2021 | 8 | 2021-08-31T12:40:07Z | 0 | 0 | 0900006484cb3e29 | |||
| FWS-HQ-ES-2019-0014-0002 | FWS | Status Review for the Peary Caribou and Proposed Listing for the Dolphin and Union Caribou with a 4(d) Rule FWS-HQ-ES-2019-0014 | Literature Cited (Proposed Rule) | Supporting & Related Material | Reference (external attachments) | 2021-08-31T04:00:00Z | 2021 | 8 | 2022-12-05T13:42:08Z | 0 | 0 | 0900006484cb3e28 | |||
| FWS-HQ-ES-2019-0014-0003 | FWS | Status Review for the Peary Caribou and Proposed Listing for the Dolphin and Union Caribou with a 4(d) Rule FWS-HQ-ES-2019-0014 | Dolphin and Union Caribou Species Report (Proposed Rule) | Supporting & Related Material | Environmental Report | 2021-08-31T04:00:00Z | 2021 | 8 | 2022-12-05T13:43:24Z | 0 | 0 | 0900006484cb3e27 | |||
| FWS-HQ-ES-2019-0014-0001 | FWS | Status Review for the Peary Caribou and Proposed Listing for the Dolphin and Union Caribou with a 4(d) Rule FWS-HQ-ES-2019-0014 | Endangered and Threatened Species: Threatened Status with Section 4(d) Rule for the Dolphin and Union Caribou and 12-month Finding for the Peary Caribou | Proposed Rule | 2021-08-31T04:00:00Z | 2021 | 8 | 2021-08-31T04:00:00Z | 2021-11-02T03:59:59Z | 2021-11-11T02:00:20Z | 2021-18098 | 0 | 0 | 0900006484cb50a0 |
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;