documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FWS-R2-ES-2021-0054" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-R2-ES-2021-0054-0011 | FWS | Endangered and Threatened Wildlife and Plants; Removing the Braken Bat Cave Meshweaver from the List of Endangered and Threatened Wildlife FWS-R2-ES-2021-0054 | The fundamental importance of taxonomy in conservation biology: the case of the eyeless Cicurina bandida (Araneae: Dictynidae) of central Texas, including new synonyms and the description of the male of the species | Supporting & Related Material | 2024-04-16T04:00:00Z | 2024 | 4 | 2024-04-16T13:30:13Z | 0 | 0 | 0900006485264576 | ||||
| FWS-R2-ES-2021-0054-0010 | FWS | Endangered and Threatened Wildlife and Plants; Removing the Braken Bat Cave Meshweaver from the List of Endangered and Threatened Wildlife FWS-R2-ES-2021-0054 | Endangered and Threatened Species: Removing the Braken Bat Cave Meshweaver from the List of Endangered and Threatened Wildlife | Rule | 2022-08-24T04:00:00Z | 2022 | 8 | 2022-08-24T12:20:35Z | 2022-18228 | 0 | 0 | 090000648526d403 | |||
| FWS-R2-ES-2021-0054-0003 | FWS | Endangered and Threatened Wildlife and Plants; Removing the Braken Bat Cave Meshweaver from the List of Endangered and Threatened Wildlife FWS-R2-ES-2021-0054 | Madla 5-year Review | Supporting & Related Material | 2021-09-30T04:00:00Z | 2021 | 9 | 2021-09-30T11:57:05Z | 0 | 0 | 0900006484db3dfd | ||||
| FWS-R2-ES-2021-0054-0001 | FWS | Endangered and Threatened Wildlife and Plants; Removing the Braken Bat Cave Meshweaver from the List of Endangered and Threatened Wildlife FWS-R2-ES-2021-0054 | Endangered and Threatened Species: Removing the Braken Bat Cave Meshweaver from the List of Endangered and Threatened Wildlife | Proposed Rule | 2021-09-30T04:00:00Z | 2021 | 9 | 2021-09-30T04:00:00Z | 2021-11-30T04:59:59Z | 2021-11-30T02:00:22Z | 2021-20911 | 0 | 0 | 0900006484db3c95 | |
| FWS-R2-ES-2021-0054-0002 | FWS | Endangered and Threatened Wildlife and Plants; Removing the Braken Bat Cave Meshweaver from the List of Endangered and Threatened Wildlife FWS-R2-ES-2021-0054 | BBCM literature cited | Supporting & Related Material | 2021-09-30T04:00:00Z | 2021 | 9 | 2021-09-30T11:57:00Z | 0 | 0 | 0900006484db3dfc | ||||
| FWS-R2-ES-2021-0054-0004 | FWS | Endangered and Threatened Wildlife and Plants; Removing the Braken Bat Cave Meshweaver from the List of Endangered and Threatened Wildlife FWS-R2-ES-2021-0054 | Hedin et al. 2018 | Supporting & Related Material | 2021-09-30T04:00:00Z | 2021 | 9 | 2021-09-30T11:57:24Z | 0 | 0 | 0900006484db3dfe |
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;