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 = "Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-2011-0027-0001 | OCC | Community Reinvestment Act Regulations OCC-2011-0027 | Community Reinvestment Act Regulations | Rule | Final Rule | 2011-12-22T05:00:00Z | 2011 | 12 | 2011-12-22T05:00:00Z | 2012-01-10T16:27:05Z | 2011-32727 | 0 | 0 | 0900006480f87c86 | |
| OCC-2011-0021-0001 | OCC | Retail Foreign Exchange Transactions - Interim Final Rule OCC-2011-0021 | Retail Foreign Exchange Transactions | Rule | Interim Final Rule | 2011-09-12T04:00:00Z | 2011 | 9 | 2011-09-12T04:00:00Z | 2011-11-15T04:59:59Z | 2011-09-12T19:05:51Z | 2011-23033 | 0 | 0 | 0900006480f16d9c |
| OCC-2011-0016-0001 | 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 | Office of Thrift Supervision Integration Pursuant to Dodd-Frank Wall Street Reform and Consumer Protection Act | Rule | Interim Final Rule | 2011-08-09T04:00:00Z | 2011 | 8 | 2011-08-09T04:00:00Z | 2011-10-12T03:59:59Z | 2011-09-06T19:15:07Z | 2011-17581 | 0 | 0 | 0900006480edba90 |
| OCC-2011-0018-0001 | OCC | OTS Integration; Dodd-Frank Implementation OCC-2011-0018 | Office of Thrift Supervision Integration; Dodd-Frank Act Implementation | Rule | Final Rule | 2011-07-21T04:00:00Z | 2011 | 7 | 2011-07-21T04:00:00Z | 2011-07-21T12:47:28Z | 2011-18231 | 0 | 0 | 0900006480ec8996 | |
| OCC-2011-0010-0001 | OCC | Retail Foreign Exchange Transactions OCC-2011-0010 | Retail Foreign Exchange Transactions | Rule | Final Rule | 2011-07-14T04:00:00Z | 2011 | 7 | 2011-07-14T04:00:00Z | 2011-07-14T13:01:39Z | 2011-17514 | 0 | 0 | 0900006480ec1c9e | |
| OCC-2011-0009-0001 | OCC | Risk-Based Capital Guidelines; Revising Transitional Floors for Advanced Approaches Rule OCC-2011-0009 | Risk-Based Capital Standards: Advanced Capital Adequacy FrameworkBasel II; Establishment of Risk-Based Capital Floor | Rule | Final Rule | 2011-06-28T04:00:00Z | 2011 | 6 | 2011-06-28T04:00:00Z | 2011-06-28T17:58:21Z | 2011-15669 | 0 | 0 | 0900006480eb5a63 | |
| OCC-2011-0003-0001 | OCC | Bank Secrecy Act Compliance; Fair Credit Reporting; Technical Corrections OCC-2011-0003 | Bank Secrecy Act Compliance; Fair Credit Reporting: Technical Amendments | Rule | Final Rule | 2011-02-08T05:00:00Z | 2011 | 2 | 2011-02-08T05:00:00Z | 2011-06-11T17:52:29Z | 2011-02747 | 0 | 0 | 0900006480be0ea3 |
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;