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 = 2021 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-2021-0014-0001 | OCC | Community Reinvestment Act (Rescind and Replace) OCC-2021-0014 | Community Reinvestment Act Regulations | Proposed Rule | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-10-30T03:59:59Z | 2022-06-10T01:00:25Z | 2021-19738 | 0 | 0 | 0900006484d8c2e4 | |
| OCC-2019-0012-0004 | OCC | Credit Risk Retention-Notice of Commencement of Review OCC-2019-0012 | Credit Risk Retention: Notification of Extension of Review Period | Proposed Rule | 2021-07-22T04:00:00Z | 2021 | 7 | 2021-07-22T04:00:00Z | 2021-07-22T13:20:54Z | 2021-15424 | 0 | 0 | 0900006484c077f6 | ||
| OCC-2020-0043-0001 | OCC | Interagency Guidelines on Tax Allocation Agreements OCC-2020-0043 | Tax Allocation Agreements | Proposed Rule | 2021-05-10T04:00:00Z | 2021 | 5 | 2021-05-10T04:00:00Z | 2021-07-10T03:59:59Z | 2021-07-10T01:00:47Z | 2021-09047 | 0 | 0 | 0900006484ae1dbc | |
| OCC-2020-0033-0001 | OCC | Loans in Areas Having Special Flood Hazards; Interagency Questions and Answers Regarding Private Flood Insurance OCC-2020-0033 | Loans in Areas Having Special Flood Hazards: Interagency Questions and Answers Regarding Private Flood Insurance | Proposed Rule | 2021-03-18T04:00:00Z | 2021 | 3 | 2021-03-18T04:00:00Z | 2021-05-18T03:59:59Z | 2021-05-18T01:00:43Z | 2021-05314 | 0 | 0 | 0900006484a6ffff | |
| OCC-2020-0045-0001 | OCC | National Bank and Federal Savings Association Premises OCC-2020-0045 | National Bank and Federal Savings Association Premises | Proposed Rule | 2021-02-03T05:00:00Z | 2021 | 2 | 2021-02-03T05:00:00Z | 2021-03-23T03:59:59Z | 2021-05-20T01:00:40Z | 2020-29277 | 0 | 0 | 0900006484a17e8d | |
| OCC-2020-0037-0001 | OCC | Exemptions to Suspicious Activity Report Requirements OCC-2020-0037 | Exemptions to Suspicious Activity Report Requirements | Proposed Rule | 2021-01-22T05:00:00Z | 2021 | 1 | 2021-01-22T05:00:00Z | 2021-02-23T04:59:59Z | 2021-02-23T02:00:42Z | 2021-00034 | 0 | 0 | 09000064849fc76f | |
| OCC-2020-0038-0001 | OCC | Computer Security Incident Notification OCC-2020-0038 | Computer-Security Incident Notification Requirements for Banking Organizations and their Bank Service Providers | Proposed Rule | 2021-01-12T05:00:00Z | 2021 | 1 | 2021-01-12T05:00:00Z | 2021-04-13T03:59:59Z | 2021-04-14T01:00:36Z | 2020-28498 | 0 | 0 | 09000064849ef87f |
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;