documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "OCC", document_type = "Proposed Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, comment_end_date, withdrawn, 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-2023-0011-0009 | OCC | Long-term Debt Requirements for Large Bank Holding Companies, Certain Intermediate Holding Companies of Foreign Banking Organizations, and Large Insured Depository Institutions OCC-2023-0011 | Long-Term Debt Requirements for Large Bank Holding Companies, Certain Intermediate Holding Companies of Foreign Banking Organizations, and Large Insured Depository Institutions | Proposed Rule | 2023-11-29T05:00:00Z | 2023 | 11 | 2023-11-29T05:00:00Z | 2024-01-17T04:59:59Z | 2024-09-27T01:01:05Z | 2023-26202 | 0 | 0 | 09000064862befb9 | |
| OCC-2023-0008-0021 | OCC | Regulatory Capital Rule: Amendments Applicable to Large Banking Organizations and to Banking Organizations with Significant Trading Activity OCC-2023-0008 | Regulatory Capital Rule: Large Banking Organizations and Banking Organizations with Significant Trading Activity; Extension of Comment Period | Proposed Rule | 2023-10-27T04:00:00Z | 2023 | 10 | 2023-10-27T04:00:00Z | 2024-01-17T04:59:59Z | 2024-08-22T01:02:04Z | 2023-23671 | 0 | 0 | 090000648614a369 | |
| OCC-2023-0011-0001 | OCC | Long-term Debt Requirements for Large Bank Holding Companies, Certain Intermediate Holding Companies of Foreign Banking Organizations, and Large Insured Depository Institutions OCC-2023-0011 | Long-term Debt Requirements for Large Bank Holding Companies, Certain Intermediate Holding Companies of Foreign Banking Organizations, and Large Insured Depository Institutions | Proposed Rule | 2023-09-19T04:00:00Z | 2023 | 9 | 2023-09-19T04:00:00Z | 2023-12-01T04:59:59Z | 2023-12-01T02:00:29Z | 2023-19265 | 0 | 0 | 0900006485fcf88f | |
| OCC-2023-0008-0002 | OCC | Regulatory Capital Rule: Amendments Applicable to Large Banking Organizations and to Banking Organizations with Significant Trading Activity OCC-2023-0008 | Regulatory Capital Rule: Large Banking Organizations and Banking Organizations with Significant Trading Activity | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-09-18T04:00:00Z | 2023 | 9 | 2023-09-18T04:00:00Z | 2023-12-01T04:59:59Z | 2023-12-01T02:01:10Z | 2023-19200 | 0 | 0 | 0900006485fc13e3 |
| OCC-2023-0007-0001 | OCC | Guidance: Reconsiderations of Value of Residential Real Estate Valuations OCC-2023-0007 | Interagency Guidance on Reconsiderations of Value of Residential Real Estate Valuations | Proposed Rule | 2023-07-21T04:00:00Z | 2023 | 7 | 2023-07-21T04:00:00Z | 2023-09-20T03:59:59Z | 2023-09-20T01:03:33Z | 2023-12609 | 0 | 0 | 0900006485cf8fb9 | |
| OCC-2023-0002-0001 | OCC | Quality Control Standards for Automated Valuation Models OCC-2023-0002 | Quality Control Standards for Automated Valuation Models | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2023-06-21T04:00:00Z | 2023 | 6 | 2023-06-21T04:00:00Z | 2023-08-22T03:59:59Z | 2023-08-22T01:03:12Z | 2023-12187 | 0 | 0 | 0900006485b90c27 |
| OCC-2023-0002-0002 | OCC | Quality Control Standards for Automated Valuation Models OCC-2023-0002 | Quality Control Standards for Automated Valuation Models | Proposed Rule | 2023-06-21T00:00:00Z | 2023 | 6 | 2023-06-26T20:50:29Z | 0 | 1 | 0900006485b917f7 |
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;