documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FWS-R5-FAC-2026-1684" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_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-R5-FAC-2026-1684-0001 | FWS | Agency Information Collection Activities; Submission to the Office of Management and Budget; Horseshoe Crab and Cooperative Fish Tagging Programs FWS-R5-FAC-2026-1684 | Agency Information Collection Activities; Submission to the Office of Management and Budget; Horseshoe Crab and Cooperative Fish Tagging Programs | Notice | 2026-05-15T04:00:00Z | 2026 | 5 | 2026-05-15T16:47:48Z | 2026-09751 | 0 | 0 | 09000064b92da381 | |||
| FWS-R5-FAC-2026-1684-0004 | FWS | Agency Information Collection Activities; Submission to the Office of Management and Budget; Horseshoe Crab and Cooperative Fish Tagging Programs FWS-R5-FAC-2026-1684 | FWS Form 3-2493 American Shad Recapture Data draft Rev 07-2017 | Supporting & Related Material | 2026-05-15T04:00:00Z | 2026 | 5 | 2026-05-15T16:48:12Z | 0 | 0 | 09000064b92d9025 | ||||
| FWS-R5-FAC-2026-1684-0005 | FWS | Agency Information Collection Activities; Submission to the Office of Management and Budget; Horseshoe Crab and Cooperative Fish Tagging Programs FWS-R5-FAC-2026-1684 | FWS Form 3-2310 Horseshoe Crab Recapture Report Rev 07-2017 | Supporting & Related Material | 2026-05-15T04:00:00Z | 2026 | 5 | 2026-05-15T16:48:14Z | 0 | 0 | 09000064b92d9026 | ||||
| FWS-R5-FAC-2026-1684-0007 | FWS | Agency Information Collection Activities; Submission to the Office of Management and Budget; Horseshoe Crab and Cooperative Fish Tagging Programs FWS-R5-FAC-2026-1684 | FWS Form 3-2311 Horseshoe Crab Tagging Report Rev 07-2017 | Supporting & Related Material | 2026-05-15T04:00:00Z | 2026 | 5 | 2026-05-15T16:48:16Z | 0 | 0 | 09000064b92d9035 | ||||
| FWS-R5-FAC-2026-1684-0003 | FWS | Agency Information Collection Activities; Submission to the Office of Management and Budget; Horseshoe Crab and Cooperative Fish Tagging Programs FWS-R5-FAC-2026-1684 | FWS Form 3-2496 Sturgeon Recapture Data Rev 07-2017 | Supporting & Related Material | 2026-05-15T04:00:00Z | 2026 | 5 | 2026-05-15T16:48:11Z | 0 | 0 | 09000064b92d9024 | ||||
| FWS-R5-FAC-2026-1684-0002 | FWS | Agency Information Collection Activities; Submission to the Office of Management and Budget; Horseshoe Crab and Cooperative Fish Tagging Programs FWS-R5-FAC-2026-1684 | FWS Form 3-2495 Striped Bass Recapture Data Rev 07-2017 | Supporting & Related Material | 2026-05-15T04:00:00Z | 2026 | 5 | 2026-05-15T16:48:09Z | 0 | 0 | 09000064b92d9023 | ||||
| FWS-R5-FAC-2026-1684-0006 | FWS | Agency Information Collection Activities; Submission to the Office of Management and Budget; Horseshoe Crab and Cooperative Fish Tagging Programs FWS-R5-FAC-2026-1684 | FWS Form 3-2494 Snakehead Recapture Data Rev 07-2017 | Supporting & Related Material | 2026-05-15T04:00:00Z | 2026 | 5 | 2026-05-15T16:48:15Z | 0 | 0 | 09000064b92d9027 |
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;