documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "OCC", document_type = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_date, 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-2015-0025-0001 | OCC | Community Reinvestment Act Regulations OCC-2015-0025 | Community Reinvestment Act Regulations, | Rule | Final Rule | 2015-12-29T05:00:00Z | 2015 | 12 | 2015-12-29T05:00:00Z | 2016-01-05T20:50:01Z | 2015-32670 | 0 | 0 | 0900006481dd792b | |
| OCC-2011-0016-0010 | OCC | Republication of Regulations in Connection with Office of Thrift Supervision Integration Pursuant to the Dodd-Frank Wall Street Reform and Consumer Protection Act of 2010 OCC-2011-0016 | Savings Associations--Operations; CFR Correction, | Rule | 2015-12-22T05:00:00Z | 2015 | 12 | 2015-12-22T05:00:00Z | 2016-01-05T21:14:51Z | 2015-32113 | 0 | 0 | 0900006481dc1480 | ||
| OCC-2015-0023-0001 | OCC | Margin and Capital Requirements for Covered Swap Entities -- Interim Final Rule OCC-2015-0023 | Margin and Capital Requirements for Covered Swap Entities | Rule | 2015-11-30T05:00:00Z | 2015 | 11 | 2015-11-30T05:00:00Z | 2016-02-01T04:59:59Z | 2016-03-10T18:00:40Z | 2015-28670 | 0 | 0 | 0900006481d796db | |
| OCC-2011-0008-0203 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | Margin and Capital Requirements for Covered Swap Entities | Rule | 2015-11-30T05:00:00Z | 2015 | 11 | 2015-11-30T05:00:00Z | 2015-11-30T18:17:47Z | 2015-28671 | 0 | 0 | 0900006481d7971b | ||
| OCC-2015-0021-0001 | OCC | Appraisals for Higher-Priced Mortgage Loans Exemption OCC-2015-0021 | Appraisals for Higher-Priced Mortgage Loans Exemption Threshold | Rule | 2015-11-27T05:00:00Z | 2015 | 11 | 2015-11-27T05:00:00Z | 2015-11-30T18:22:24Z | 2015-30097 | 0 | 0 | 0900006481d75cb3 | ||
| OCC-2014-0016-0025 | OCC | Loans in Areas Having Special Flood Hazards (Homeowner Flood Insurance Affordability Act of 2014) OCC-2014-0016 | Loans in Areas Having Special Flood Hazards | Rule | Final Rule | 2015-07-21T04:00:00Z | 2015 | 7 | 2015-07-21T04:00:00Z | 2015-07-23T20:24:29Z | 2015-15956 | 0 | 0 | 0900006481b947f4 | |
| OCC-2014-0025-0006 | OCC | Regulatory Capital Rules: Regulatory Capital, Proposed Revisions to the Advanced Approaches Risk-Based Capital Rule OCC-2014-0025 | Regulatory Capital: Banking Organizations Subject to the Advanced Approaches Risk-Based Capital Rule | Rule | Final Rule | 2015-07-15T04:00:00Z | 2015 | 7 | 2015-07-15T04:00:00Z | 2015-07-16T18:44:07Z | 2015-15748 | 0 | 0 | 0900006481b8669a | |
| OCC-2014-0007-0007 | OCC | Licensing Integration Regulations OCC-2014-0007 | Integration of National Bank and Federal Savings Association Regulations: Licensing Rules | Rule | 2015-06-15T04:00:00Z | 2015 | 6 | 2015-06-15T04:00:00Z | 2015-06-15T16:20:31Z | C2-2015-11229 | 0 | 0 | 0900006481b36572 | ||
| OCC-2014-0002-0057 | OCC | Minimum Guidelines for Appraisal Management Companies OCC-2014-0002 | Minimum Requirements for Appraisal Management Companies | Rule | Final Rule | 2015-06-09T04:00:00Z | 2015 | 6 | 2015-06-09T04:00:00Z | 2015-06-11T14:33:23Z | 2015-12719 | 0 | 0 | 0900006481b24c7c | |
| OCC-2014-0007-0005 | OCC | Licensing Integration Regulations OCC-2014-0007 | Integration of National Bank and Federal Savings Association Regulations: Licensing Rules | Rule | 2015-06-03T04:00:00Z | 2015 | 6 | 2015-06-03T04:00:00Z | 2015-06-03T14:48:58Z | C1-2015-11229 | 0 | 0 | 0900006481b17b27 | ||
| OCC-2014-0007-0004 | OCC | Licensing Integration Regulations OCC-2014-0007 | Integration of National Bank and Federal Savings Association Regulations: Licensing Rules | Rule | 2015-05-18T04:00:00Z | 2015 | 5 | 2015-05-18T04:00:00Z | 2015-06-05T01:30:16Z | 2015-11229 | 0 | 0 | 0900006481ae58d6 |
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;