documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FWS-R4-ES-2026-0232" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-R4-ES-2026-0232-0002 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | Kitty Bowden HCP | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:17:55Z | 0 | 0 | 09000064b9224584 | ||||
| FWS-R4-ES-2026-0232-0006 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | Tracey Thompson HCP | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:18:07Z | 0 | 0 | 09000064b9224587 | ||||
| FWS-R4-ES-2026-0232-0003 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | Kitty Bowden site plan | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:17:57Z | 0 | 0 | 09000064b9224582 | ||||
| FWS-R4-ES-2026-0232-0005 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | Tracey Thompson application_Redacted | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:18:05Z | 0 | 0 | 09000064b9224585 | ||||
| FWS-R4-ES-2026-0232-0010 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | Doug Spurling Application_Redacted | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:18:26Z | 0 | 0 | 09000064b9224588 | ||||
| FWS-R4-ES-2026-0232-0001 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | General Conservation Plan for the Alabama Beach Mouse; Categorical Exclusion; Baldwin County, AL | Notice | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T04:00:00Z | 2026-04-21T03:59:59Z | 2026-04-21T09:00:13Z | 2026-05451 | 0 | 0 | 09000064b92272d0 | |
| FWS-R4-ES-2026-0232-0007 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | 25-03 Thompson Site Plan - Revision 1 | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:18:10Z | 0 | 0 | 09000064b9224580 | ||||
| FWS-R4-ES-2026-0232-0009 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | spurling - revised drawing request for additional 705 sqft to impacts | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:18:25Z | 0 | 0 | 09000064b9224583 | ||||
| FWS-R4-ES-2026-0232-0004 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | Kitty Bowden_Application_Redacted | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:17:59Z | 0 | 0 | 09000064b9224586 | ||||
| FWS-R4-ES-2026-0232-0008 | FWS | General Conservation Plan for the Alabama beach mouse; Categorical Exclusion; Baldwin County, AL (applicant: Kitty Bowden) FWS-R4-ES-2026-0232 | TE087219-0 HCP Bartee x Burton x Spurling | Supporting & Related Material | 2026-03-20T04:00:00Z | 2026 | 3 | 2026-03-20T17:18:23Z | 0 | 0 | 09000064b9224581 |
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;