documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OCC-2023-0017" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2023-0017-0040 | OCC | Business Combinations Under the Bank Merger Act OCC-2023-0017 | Business Combinations under the Bank Merger Act | Rule | 2024-09-25T04:00:00Z | 2024 | 9 | 2024-09-25T04:00:00Z | 2024-09-26T19:16:20Z | 2024-21560 | 0 | 0 | 0900006486782d92 | ||
| OCC-2023-0017-0017 | OCC | Business Combinations Under the Bank Merger Act OCC-2023-0017 | Business Combinations under the Bank Merger Act | Proposed Rule | 2024-04-15T04:00:00Z | 2024 | 4 | 2024-04-15T04:00:00Z | 2024-06-16T03:59:59Z | 2024-06-21T01:00:41Z | 2024-07876 | 0 | 0 | 09000064864d4f28 | |
| OCC-2023-0017-0013 | OCC | Business Combinations Under the Bank Merger Act OCC-2023-0017 | Summary of 4.5.24 Meeting with Department of Finance Canada | Supporting & Related Material | Meeting Summary | 2024-04-08T04:00:00Z | 2024 | 4 | 2024-04-08T21:18:34Z | 0 | 0 | 09000064864c1878 | |||
| OCC-2023-0017-0007 | OCC | Business Combinations Under the Bank Merger Act OCC-2023-0017 | Summary of 03.25.2024 Meeting with Rise Economy | Supporting & Related Material | Meeting Summary | 2024-03-25T04:00:00Z | 2024 | 3 | 2024-03-26T15:42:30Z | 0 | 0 | 090000648649791c | |||
| OCC-2023-0017-0004 | OCC | Business Combinations Under the Bank Merger Act OCC-2023-0017 | Summary of 02.15.24 Meeting with Senate Banking Committee Ranking Member Staff | Supporting & Related Material | Meeting Summary | 2024-02-15T05:00:00Z | 2024 | 2 | 2024-02-15T22:21:55Z | 0 | 0 | 090000648640a428 | |||
| OCC-2023-0017-0001 | OCC | Business Combinations Under the Bank Merger Act OCC-2023-0017 | Business Combinations Under the Bank Merger Act | Proposed Rule | 2024-02-13T05:00:00Z | 2024 | 2 | 2024-02-13T05:00:00Z | 2024-04-16T03:59:59Z | 2024-04-22T16:06:22Z | 2024-02663 | 0 | 0 | 090000648640435a |
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;