documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NOAA-NOS-2025-0108" 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
- NOAA 7
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NOAA-NOS-2025-0108-1694 | NOAA | None NOAA-NOS-2025-0108 | Deep Seabed Mining: Revisions to Regulations for Exploration License and Commercial Recovery Permit Applications, Final Rule. Final Regulatory Impact Analysis and Final Regulatory Flexibility Analysis. | Supporting & Related Material | 2026-01-21T05:00:00Z | 2026 | 1 | 2026-01-21T18:31:49Z | 0 | 0 | 09000064b91630fc | ||||
| NOAA-NOS-2025-0108-1693 | NOAA | None NOAA-NOS-2025-0108 | Deep Seabed Mining: Exploration License and Commercial Recovery Permit Applications | Rule | 2026-01-21T05:00:00Z | 2026 | 1 | 2026-01-21T05:00:00Z | 2026-01-21T18:24:21Z | 2026-01044 | 0 | 0 | 09000064b91756e8 | ||
| NOAA-NOS-2025-0108-1690 | NOAA | None NOAA-NOS-2025-0108 | Deep Seabed Mining Revisions to regulations for exploration license and commercial recovery permit applications - Virtual Public Hearing 2025-09-04 | Supporting & Related Material | 2025-09-19T04:00:00Z | 2025 | 9 | 2025-09-19T22:38:30Z | 0 | 0 | 09000064b8fc3728 | ||||
| NOAA-NOS-2025-0108-1689 | NOAA | None NOAA-NOS-2025-0108 | Deep Seabed Mining Revisions to regulations for exploration license and commercial recovery permit applications - Virtual Public Hearing 2025-09-03 | Supporting & Related Material | 2025-09-19T04:00:00Z | 2025 | 9 | 2025-09-19T22:38:26Z | 0 | 0 | 09000064b8fc3727 | ||||
| NOAA-NOS-2025-0108-0002 | NOAA | None NOAA-NOS-2025-0108 | 0648-BN96_DSHMRA_RIA and IRFA (06-30-2025) | Supporting & Related Material | 2025-07-07T04:00:00Z | 2025 | 7 | 2025-07-07T16:54:51Z | 0 | 0 | 09000064b8e4cb18 | ||||
| NOAA-NOS-2025-0108-0001 | NOAA | None NOAA-NOS-2025-0108 | Deep Seabed Mining: Exploration License and Commercial Recovery Permit Applications | Proposed Rule | 2025-07-07T04:00:00Z | 2025 | 7 | 2025-07-07T04:00:00Z | 2025-09-06T03:59:59Z | 2025-09-26T09:00:37Z | 2025-12513 | 0 | 0 | 09000064b8e57577 | |
| NOAA-NOS-2025-0108-0003 | NOAA | None NOAA-NOS-2025-0108 | Proposed Rule DSHMRA Track Changes (07-01-2025) | Supporting & Related Material | 2025-07-07T04:00:00Z | 2025 | 7 | 2025-07-07T16:55:25Z | 0 | 0 | 09000064b8e4cb19 |
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;