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 = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, comment_end_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-2016-0005-0001 | OCC | Loans in Areas Having Special Flood Hazards: Private Flood Insurance OCC-2016-0005 | Loans in Areas Having Special Flood Hazards: Private Flood Insurance | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-11-07T05:00:00Z | 2016 | 11 | 2016-11-07T05:00:00Z | 2017-01-07T04:59:59Z | 2017-02-03T14:01:47Z | 2016-26411 | 0 | 0 | 09000064823779b7 |
| OCC-2016-0016-0001 | OCC | Enhanced Cyber Risk Management Standards OCC-2016-0016 | Enhanced Cyber Risk Management Standards | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-10-26T04:00:00Z | 2016 | 10 | 2016-10-26T04:00:00Z | 2017-02-18T04:59:59Z | 2017-02-18T14:00:14Z | 2016-25871 | 0 | 0 | 090000648234d4a3 |
| OCC-2016-0022-0001 | OCC | Industrial and Commercial Metals OCC-2016-0022 | Industrial and Commercial Metals | Proposed Rule | 2016-09-15T04:00:00Z | 2016 | 9 | 2016-09-15T04:00:00Z | 2016-11-15T04:59:59Z | 2016-11-15T02:00:52Z | 2016-22017 | 0 | 0 | 09000064822105b2 | |
| OCC-2016-0017-0001 | OCC | Receiverships for Uninsured National Banks OCC-2016-0017 | Receiverships for Uninsured National Banks | Proposed Rule | 2016-09-13T04:00:00Z | 2016 | 9 | 2016-09-13T04:00:00Z | 2016-11-15T04:59:59Z | 2016-11-16T02:00:18Z | 2016-21846 | 0 | 0 | 090000648220271a | |
| OCC-2016-0009-0001 | OCC | Mandatory Contractual Stay Requirements for Qualified Financial Contracts OCC-2016-0009 | Mandatory Contractual Stay Requirements for Qualified Financial Contract | Proposed Rule | 2016-08-19T04:00:00Z | 2016 | 8 | 2016-08-19T04:00:00Z | 2016-10-19T03:59:59Z | 2017-03-11T02:02:41Z | 2016-19671 | 0 | 0 | 0900006482184285 | |
| OCC-2015-0021-0002 | OCC | Appraisals for Higher-Priced Mortgage Loans Exemption OCC-2015-0021 | Appraisals for Higher-Priced Mortgage Loans Exemption Threshold | Proposed Rule | 2016-08-04T04:00:00Z | 2016 | 8 | 2016-08-04T04:00:00Z | 2016-09-07T03:59:59Z | 2016-09-07T01:00:25Z | 2016-18058 | 0 | 0 | 0900006482154f39 | |
| OCC-2011-0001-2367 | OCC | Incentive-Based Compensation Arrangements OCC-2011-0001 | Incentive-Based Compensation Arrangements | Proposed Rule | 2016-06-10T04:00:00Z | 2016 | 6 | 2016-06-10T04:00:00Z | 2016-07-23T03:59:59Z | 2023-04-12T01:00:46Z | 2016-11788 | 0 | 0 | 090000648202c00b | |
| OCC-2014-0029-0014 | OCC | Net Stable Funding Ratio (NSFR) OCC-2014-0029 | Net Stable Funding Ratio: Liquidity Risk Measurement Standards and Disclosure Requirements | Proposed Rule | 2016-06-01T04:00:00Z | 2016 | 6 | 2016-06-01T04:00:00Z | 2016-08-06T03:59:59Z | 2016-08-25T01:01:23Z | 2016-11505 | 0 | 0 | 0900006482004050 | |
| OCC-2016-0002-0001 | OCC | Economic Growth and Regulatory Paperwork Reduction Act of 1996 OCC-2016-0002 | Economic Growth and Regulatory Paperwork Reduction Act Amendments | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-03-14T04:00:00Z | 2016 | 3 | 2016-03-14T04:00:00Z | 2016-05-14T03:59:59Z | 2016-05-16T15:00:59Z | 2016-05089 | 0 | 0 | 0900006481ebf8dd |
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;