documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FWS-HQ-LE-2025-0572" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: last_modified, 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-HQ-LE-2025-0572-0003 | FWS | Agency Information Collection Activities; Federal Fish and Wildlife Applications and Reports – Law Enforcement FWS-HQ-LE-2025-0572 | 3-200-2 Designated Port Exception Permit Rev 07-2025 | Supporting & Related Material | 2025-09-11T04:00:00Z | 2025 | 9 | 2025-09-11T16:02:28Z | 0 | 0 | 09000064b8f65d00 | ||||
| FWS-HQ-LE-2025-0572-0005 | FWS | Agency Information Collection Activities; Federal Fish and Wildlife Applications and Reports – Law Enforcement FWS-HQ-LE-2025-0572 | 3-200-3a IE License App Rev 07-2025 | Supporting & Related Material | 2025-09-11T04:00:00Z | 2025 | 9 | 2025-09-11T16:02:29Z | 0 | 0 | 09000064b8f65d02 | ||||
| FWS-HQ-LE-2025-0572-0006 | FWS | Agency Information Collection Activities; Federal Fish and Wildlife Applications and Reports – Law Enforcement FWS-HQ-LE-2025-0572 | 3-200-3b IE License App Rev 07-2025 | Supporting & Related Material | 2025-09-11T04:00:00Z | 2025 | 9 | 2025-09-11T16:02:29Z | 0 | 0 | 09000064b8f65d04 | ||||
| FWS-HQ-LE-2025-0572-0004 | FWS | Agency Information Collection Activities; Federal Fish and Wildlife Applications and Reports – Law Enforcement FWS-HQ-LE-2025-0572 | 3-200-44a Agent-Tannery Bi-Ann Inventory Rpt Rev 12-2021 | Supporting & Related Material | 2025-09-11T04:00:00Z | 2025 | 9 | 2025-09-11T16:02:28Z | 0 | 0 | 09000064b8f65d01 | ||||
| FWS-HQ-LE-2025-0572-0001 | FWS | Agency Information Collection Activities; Federal Fish and Wildlife Applications and Reports – Law Enforcement FWS-HQ-LE-2025-0572 | Agency Information Collection Activities; Federal Fish and Wildlife Applications and Reports--Law Enforcement | Notice | 2025-09-11T04:00:00Z | 2025 | 9 | 2025-09-11T04:00:00Z | 2025-11-11T04:59:59Z | 2025-11-25T10:00:20Z | 2025-17470 | 0 | 0 | 09000064b8f6a35b | |
| FWS-HQ-LE-2025-0572-0002 | FWS | Agency Information Collection Activities; Federal Fish and Wildlife Applications and Reports – Law Enforcement FWS-HQ-LE-2025-0572 | 3-200-44 Agent-Tannery Registration Rev 12-2021 | Supporting & Related Material | 2025-09-11T04:00:00Z | 2025 | 9 | 2025-09-11T16:02:28Z | 0 | 0 | 09000064b8f64cff |
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;