documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "OCC", document_type = "Other" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OCC-2025-0636-0001 | OCC | Foris DAX National Trust Bank OCC-2025-0636 | Foris DAX National Trust Bank | Other | Application | 2025-12-01T05:00:00Z | 2025 | 12 | 2025-12-01T05:00:00Z | 2025-11-25T04:59:59Z | 2025-12-02T10:00:25Z | 0 | 0 | 09000064b90a69d7 | |
| OCC-2025-0603-0001 | OCC | Bridge National Trust Bank, New York, New York OCC-2025-0603 | Bridge National Trust Bank | Other | Application | 2025-11-19T05:00:00Z | 2025 | 11 | 2025-11-19T05:00:00Z | 2025-11-14T04:59:59Z | 2025-11-20T10:00:18Z | 0 | 0 | 09000064b908a107 | |
| OCC-2025-0570-0001 | OCC | Connectia Trust, National Association, New York, New York OCC-2025-0570 | Connectia Trust, National Association | Other | Application | 2025-11-18T05:00:00Z | 2025 | 11 | 2025-11-18T05:00:00Z | 2025-11-08T04:59:59Z | 2025-11-20T10:00:17Z | 0 | 0 | 09000064b9086e84 | |
| OCC-2025-0504-0001 | OCC | Coinbase National Trust Company OCC-2025-0504 | coinbase-national-trust-company (2) | Other | Application | 2025-11-04T05:00:00Z | 2025 | 11 | 2025-11-04T05:00:00Z | 2025-11-04T04:59:59Z | 2025-11-20T10:00:17Z | 0 | 0 | 09000064b906914c | |
| OCC-2025-0111-0001 | OCC | Ripple National Trust Bank OCC-2025-0111 | Ripple National Trust Bank | Other | Application | 2025-07-23T04:00:00Z | 2025 | 7 | 2025-07-23T04:00:00Z | 2025-08-05T03:59:59Z | 2025-09-02T15:13:13Z | 0 | 0 | 09000064b8e9894c | |
| OCC-2025-0109-0001 | OCC | First National Digital Currency Bank, NA OCC-2025-0109 | First National Digital Currency Bank NA | Other | Application | 2025-07-22T04:00:00Z | 2025 | 7 | 2025-06-30T04:00:00Z | 2025-07-31T03:59:59Z | 2025-09-02T15:14:06Z | 0 | 0 | 09000064b8e971c3 | |
| OCC-2025-0110-0001 | OCC | Wise National Trust OCC-2025-0110 | Wise National Trust | Other | Application | 2025-07-22T04:00:00Z | 2025 | 7 | 2025-06-18T04:00:00Z | 2025-07-19T03:59:59Z | 2025-09-02T15:13:41Z | 0 | 0 | 09000064b8e974d4 | |
| OCC-2025-0108-0001 | OCC | National Digital Trust Company OCC-2025-0108 | National Digital Trust Company | Other | Application | 2025-07-22T04:00:00Z | 2025 | 7 | 2025-07-22T04:00:00Z | 2025-07-01T03:59:59Z | 2025-09-02T15:14:46Z | 0 | 0 | 09000064b8e96db7 |
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;