documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "OCC", document_type = "Rule" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OCC-2025-0306-0001 | OCC | Appraisals for Higher-Priced Mortgage Loans Exemption Threshold OCC-2025-0306 | Appraisals for Higher-Priced Mortgage Loans Exemption Threshold | Rule | 2025-12-16T05:00:00Z | 2025 | 12 | 2025-12-16T05:00:00Z | 2025-12-17T01:20:40Z | 2025-22875 | 0 | 0 | 09000064b90da7dc | ||
| OCC-2025-0006-0033 | OCC | Regulatory Capital Rules: Enhanced Supplementary Leverage Ratio Standards for U.S. Global Systemically Important Bank Holding Companies and Certain of Their Subsidiary Insured Depository Institutions OCC-2025-0006 | Regulatory Capital: Modifications to the Enhanced Supplementary Leverage Ratio Standards for U.S. Global Systemically Important Bank Holding Companies and Their Subsidiary Depository Institutions; Total Loss-Absorbing Capacity and Long-Term Debt Requirements for U.S. Global Systemically Important Bank Holding Companies | Rule | 2025-12-01T05:00:00Z | 2025 | 12 | 2025-12-01T05:00:00Z | 2025-12-01T22:45:50Z | 2025-21626 | 0 | 0 | 09000064b90a5ada | ||
| OCC-2025-0001-0001 | OCC | Business Combinations Under the Bank Merger Act; Rescission OCC-2025-0001 | Business Combinations under the Bank Merger Act; Rescission | Rule | 2025-05-15T04:00:00Z | 2025 | 5 | 2025-05-15T04:00:00Z | 2025-06-17T03:59:59Z | 2025-06-17T09:01:09Z | 2025-08405 | 0 | 0 | 09000064b8d54023 | |
| OCC-2025-0003-0001 | OCC | Temporary Exceptions to FIRREA Appraisal Requirements in Los Angeles County as Affected by California Wildfires and Straight-line Winds OCC-2025-0003 | Temporary Exceptions: Financial Institutions Reform, Recovery, and Enforcement Act Appraisal Requirements in Los Angeles County as Affected by California Wildfires and Straight-line Winds | Rule | 2025-04-18T04:00:00Z | 2025 | 4 | 2025-04-18T04:00:00Z | 2025-04-21T18:18:33Z | 2025-06748 | 0 | 0 | 0900006486a9f52a | ||
| OCC-2025-0002-0001 | OCC | Notification of Inflation Adjustments for Civil Money Penalties OCC-2025-0002 | Civil Monetary Penalty Inflation Adjustment | Rule | 2025-01-10T05:00:00Z | 2025 | 1 | 2025-01-10T05:00:00Z | 2025-01-13T18:27:31Z | 2025-00374 | 0 | 0 | 09000064868ad8e7 |
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;