documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OCC-2012-0008" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- OCC 7
| 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-2012-0008-1754 | OCC | Regulatory Capital Rules (Part I): Regulatory Capital, Minimum Regulatory Capital Ratios, Capital Adequacy, Transition Provisions OCC-2012-0008 | Capital Adequacy Standards: CFR Correction | Rule | 2014-08-29T04:00:00Z | 2014 | 8 | 2014-08-29T04:00:00Z | 2014-09-04T14:33:07Z | 2014-20556 | 0 | 0 | 090000648184f46e | ||
| OCC-2012-0008-1752 | OCC | Regulatory Capital Rules (Part I): Regulatory Capital, Minimum Regulatory Capital Ratios, Capital Adequacy, Transition Provisions OCC-2012-0008 | Regulatory Capital: Implementation of Basel III, Capital Adequacy, Transition Provisions, etc. | Rule | 2013-10-11T04:00:00Z | 2013 | 10 | 2013-10-11T04:00:00Z | 2013-10-11T14:35:52Z | 2013-21653 | 0 | 0 | 090000648144ae1b | ||
| OCC-2012-0008-1240 | OCC | Regulatory Capital Rules (Part I): Regulatory Capital, Minimum Regulatory Capital Ratios, Capital Adequacy, Transition Provisions OCC-2012-0008 | Meeting with Wells Fargo 10-22-2012 | Supporting & Related Material | Meeting Summary | 2012-11-28T05:00:00Z | 2012 | 11 | 2012-11-28T14:20:01Z | 0 | 0 | 09000064811763a0 | |||
| OCC-2012-0008-1237 | OCC | Regulatory Capital Rules (Part I): Regulatory Capital, Minimum Regulatory Capital Ratios, Capital Adequacy, Transition Provisions OCC-2012-0008 | Meeting with Citigroup Representatives 2-08-2012 | Supporting & Related Material | Meeting Summary | 2012-11-28T05:00:00Z | 2012 | 11 | 2012-11-28T14:17:27Z | 0 | 0 | 090000648117618d | |||
| OCC-2012-0008-1239 | OCC | Regulatory Capital Rules (Part I): Regulatory Capital, Minimum Regulatory Capital Ratios, Capital Adequacy, Transition Provisions OCC-2012-0008 | Meeting with Institutional Banking Analysts 08-07-2012 | Supporting & Related Material | Meeting Summary | 2012-11-28T05:00:00Z | 2012 | 11 | 2012-11-28T14:18:55Z | 0 | 0 | 090000648117639f | |||
| OCC-2012-0008-1238 | OCC | Regulatory Capital Rules (Part I): Regulatory Capital, Minimum Regulatory Capital Ratios, Capital Adequacy, Transition Provisions OCC-2012-0008 | Meeting with ICBA Representatives 03-02-2012 | Supporting & Related Material | Meeting Summary | 2012-11-28T05:00:00Z | 2012 | 11 | 2012-11-28T14:18:21Z | 0 | 0 | 090000648117639e | |||
| OCC-2012-0008-0001 | OCC | Regulatory Capital Rules (Part I): Regulatory Capital, Minimum Regulatory Capital Ratios, Capital Adequacy, Transition Provisions OCC-2012-0008 | Regulatory Capital Rules: Regulatory Capital, Implementation of Basel III, Minimum Regulatory Capital Ratios, Capital Adequacy, Transition Provisions, and Prompt Corrective Action | Proposed Rule | 2012-08-30T04:00:00Z | 2012 | 8 | 2012-08-30T04:00:00Z | 2012-10-23T03:59:59Z | 2013-12-12T02:02:07Z | 2012-16757 | 0 | 0 | 09000064810fb022 |
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;