documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "OCC", document_type = "Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_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-2017-0025-0001 | OCC | Community Reinvestment Act Regulations OCC-2017-0025 | Community Reinvestment Act Regulations | Rule | Final Rule | 2017-12-27T05:00:00Z | 2017 | 12 | 2017-12-27T05:00:00Z | 2017-12-27T14:17:15Z | 2017-27813 | 0 | 0 | 0900006482d76344 | |
| OCC-2016-0009-0027 | OCC | Mandatory Contractual Stay Requirements for Qualified Financial Contracts OCC-2016-0009 | Mandatory Contractual Stay Requirements for Qualified Financial Contracts | Rule | Final Rule | 2017-11-29T05:00:00Z | 2017 | 11 | 2017-11-29T05:00:00Z | 2017-11-30T17:11:32Z | 2017-25529 | 0 | 0 | 0900006482cbbd26 | |
| OCC-2017-0008-0003 | OCC | Community Reinvestment Act Regulations OCC-2017-0008 | Community Reinvestment Act | Rule | 2017-11-24T05:00:00Z | 2017 | 11 | 2017-11-24T05:00:00Z | 2017-11-24T16:33:49Z | 2017-25396 | 0 | 0 | 0900006482ca7ce6 | ||
| OCC-2017-0012-0034 | OCC | Regulatory Capital Rules: Extension of Existing Transition Levels for Certain Regulatory Capital Adjustments and Deductions OCC-2017-0012 | Regulatory Capital Rules: Retention of Certain Existing Transition Provisions for Banking Organizations That Are Not Subject to Advanced Approaches Capital Rules | Rule | 2017-11-21T05:00:00Z | 2017 | 11 | 2017-11-21T05:00:00Z | 2017-11-21T15:05:54Z | 2017-25172 | 0 | 0 | 0900006482c989b5 | ||
| OCC-2017-0016-0001 | OCC | Appraisals for Higher-Priced Mortgage Loans Exemption Threshold OCC-2017-0016 | Appraisals for Higher-Priced Mortgage Loans Exemption Threshold | Rule | 2017-11-09T05:00:00Z | 2017 | 11 | 2017-11-09T05:00:00Z | 2017-11-09T15:23:26Z | 2017-24443 | 0 | 0 | 0900006482c60711 | ||
| OCC-2017-0024-0001 | OCC | Temporary Exceptions to the Financial Institutions Reform, Recovery, and Enforcement Act of 1989 (FIRREA) Appraisal Requirements in Areas Affected by Severe Storms and Flooding Related to Hurricanes Harvey, Irma, and Maria OCC-2017-0024 | Financial Institutions Reform, Recovery, and Enforcement Act Appraisal Requirements: Areas Affected by Severe Storms and Flooding Related to Hurricanes Harvey, Irma, and Maria | Rule | 2017-10-24T04:00:00Z | 2017 | 10 | 2017-10-24T04:00:00Z | 2017-10-24T15:32:40Z | 2017-22957 | 0 | 0 | 0900006482bfd42e | ||
| OCC-2017-0002-0001 | OCC | Rules of Practice and Procedure; Rules of Practice and Procedure in Adjudicatory Proceedings; Civil Money Penalty Inflation Adjustments OCC-2017-0002 | Rules of Practice and Procedure in Adjudicatory Proceedings: Civil Money Penalty Inflation Adjustments | Rule | Final Rule | 2017-01-27T05:00:00Z | 2017 | 1 | 2017-01-27T05:00:00Z | 2017-01-27T19:08:41Z | 2017-00592 | 0 | 0 | 0900006482498999 | |
| OCC-2016-0002-0006 | OCC | Economic Growth and Regulatory Paperwork Reduction Act of 1996 OCC-2016-0002 | Economic Growth and Regulatory Paperwork Reduction Act Amendments | Rule | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-01-23T17:58:59Z | 2016-30502 | 0 | 0 | 090000648248929e | ||
| OCC-2016-0031-0001 | OCC | Community Reinvestment Act Regulations OCC-2016-0031 | Community Reinvestment Act Regulations | Rule | Final Rule | 2017-01-18T05:00:00Z | 2017 | 1 | 2017-01-18T05:00:00Z | 2017-01-18T14:38:52Z | 2016-31928 | 0 | 0 | 09000064824807b8 |
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;