documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "TREAS", document_type = "Notice" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TREAS-DO-2025-0070-0001 | TREAS | Request for Comment on Innovative Methods To Detect Illicit Activity Involving Digital Assets TREAS-DO-2025-0070 | Request for Comment on Innovative Methods To Detect Illicit Activity Involving Digital Assets | Notice | Request for Comments | 2025-08-18T04:00:00Z | 2025 | 8 | 2025-08-18T04:00:00Z | 2025-10-18T03:59:59Z | 2025-11-14T10:00:24Z | 0 | 0 | 09000064b8f04d6b | |
| TREAS-DO-2025-0004-0001 | TREAS | Request for Information related to the Executive Order 14247, “Modernizing Payments To and From America’s Bank Account” TREAS-DO-2025-0004 | Request for Information Related to the Executive Order, ‘‘Modernizing Payments To and From America’s Bank Account’’ | Notice | Request for Comments | 2025-05-30T04:00:00Z | 2025 | 5 | 2025-05-30T04:00:00Z | 2025-07-01T03:59:59Z | 2025-07-08T09:00:20Z | 0 | 0 | 09000064b8dcae7e | |
| TREAS-DO-2025-0002-0001 | TREAS | Agency Information Collection Activities; Proposed Collection; Comment Request; Determinations Regarding Certain Nonbank Financial Companies TREAS-DO-2025-0002 | Agency Information Collection Activities Determinations Regarding Certain Nonbank Financial Companies | Notice | Request for Comments | 2025-04-24T04:00:00Z | 2025 | 4 | 2025-04-24T04:00:00Z | 2025-06-24T03:59:59Z | 2025-06-24T09:00:22Z | 0 | 0 | 0900006486ab52fe | |
| TREAS-TRIP-2025-0001-0001 | TREAS | Analyses of the Terrorism Risk Insurance Program TREAS-TRIP-2025-0001 | Analyses of the Terrorism Risk Insurance Program | Notice | Request for Comments | 2025-04-02T00:00:00Z | 2025 | 4 | 2025-04-02T00:00:00Z | 2025-05-20T03:59:59Z | 2025-05-20T09:00:36Z | 0 | 0 | 0900006486a62b14 | |
| TREAS-TRIP-2024-0016-0001 | TREAS | Agency Information Collection Activities; Proposed Collection; Comment Request; Terrorism Risk Insurance Program – Data Collection Forms TREAS-TRIP-2024-0016 | 2024-27640 | Notice | Request for Comments | 2025-01-27T05:00:00Z | 2025 | 1 | 2025-01-27T05:00:00Z | 2025-01-28T04:59:59Z | 2025-01-29T02:01:01Z | 0 | 0 | 090000648690235c |
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;