documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FDIC", document_type = "Proposed Rule" and posted_year = 2022 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDIC-2022-0106-0001 | FDIC | Official Sign and Advertising Requirements, False Advertising, Misrepresentation of Insured Status, and Misuse of Name or Logo | Proposed Rule | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T05:00:00Z | 2023-02-22T04:59:59Z | 2022-12-21T12:42:08Z | 2022-27349 | 0 | 0 | 09000064855487dd | ||
| FDIC-2022-0105-0001 | FDIC | Resolution-Related Resource Requirements for Large Banking Organizations; Extension of Comment Period | Proposed Rule | 2022-12-19T05:00:00Z | 2022 | 12 | 2022-12-19T05:00:00Z | 2023-01-24T04:59:59Z | 2022-12-19T12:43:18Z | 2022-27475 | 0 | 0 | 0900006485540063 | ||
| FDIC-2022-0090-0001 | FDIC | Resolution-Related Resource Requirements for Large Banking Organizations | Proposed Rule | 2022-10-24T04:00:00Z | 2022 | 10 | 2022-10-24T04:00:00Z | 2022-12-24T04:59:59Z | 2022-10-24T12:07:15Z | 2022-23003 | 0 | 0 | 090000648544caf0 | ||
| FDIC-2022-0055-0001 | FDIC | Assessments, Amendments to Incorporate Troubled Debt Restructuring Accounting Standards Update | Proposed Rule | 2022-07-27T04:00:00Z | 2022 | 7 | 2022-07-27T04:00:00Z | 2022-08-27T03:59:59Z | 2022-07-27T12:01:09Z | 2022-15763 | 0 | 0 | 09000064851ed02a | ||
| FDIC-2022-0050-0001 | FDIC | Community Reinvestment Act | Proposed Rule | 2022-07-05T04:00:00Z | 2022 | 7 | 2022-07-05T04:00:00Z | 2022-07-05T12:29:04Z | C1-2022-10111 | 0 | 0 | 09000064851b0cc9 | |||
| FDIC-2022-0047-0001 | FDIC | Assessments, Revised Deposit Insurance Assessment Rates | Proposed Rule | 2022-07-01T04:00:00Z | 2022 | 7 | 2022-07-01T04:00:00Z | 2022-08-21T03:59:59Z | 2022-08-20T01:00:20Z | 2022-13578 | 0 | 0 | 09000064851ae6ae | ||
| FDIC-2022-0039-0001 | FDIC | Community Reinvestment Act | Proposed Rule | 2022-06-03T04:00:00Z | 2022 | 6 | 2022-06-03T04:00:00Z | 2022-08-06T03:59:59Z | 2022-06-03T12:12:47Z | 2022-10111 | 0 | 0 | 0900006485129e2b | ||
| FDIC-2022-0023-0001 | FDIC | Rules of Practice and Procedure | Proposed Rule | 2022-04-13T04:00:00Z | 2022 | 4 | 2022-04-13T04:00:00Z | 2022-06-14T03:59:59Z | 2022-04-13T12:11:24Z | 2022-04454 | 0 | 0 | 0900006485014eef | ||
| FDIC-2022-0019-0001 | FDIC | Request for Information: Rules, Regulations, Guidance, and Statements of Policy Regarding Bank Merger Transactions | Proposed Rule | 2022-03-31T04:00:00Z | 2022 | 3 | 2022-03-31T04:00:00Z | 2022-06-01T03:59:59Z | 2022-03-31T12:17:26Z | 2022-06720 | 0 | 0 | 0900006484fefb0a |
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;