documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "OCC-2011-0014" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_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-0014-3269 | OCC | Volcker Rule - Prohibition on Proprietary Trading and Certain Relationships with Hedge Funds and Private Equity Funds OCC-2011-0014 | REPORT - JPMorgan Chase Whale Trades (3-15-13) | Supporting & Related Material | Status | 2013-11-19T05:00:00Z | 2013 | 11 | 2016-02-25T20:25:19Z | 0 | 0 | 090000648148aef0 | |||
| OCC-2011-0014-3266 | OCC | Volcker Rule - Prohibition on Proprietary Trading and Certain Relationships with Hedge Funds and Private Equity Funds OCC-2011-0014 | Phone Conference with Merkley_Levin Staff (October 29 2013) | Supporting & Related Material | Meeting Summary | 2013-11-19T05:00:00Z | 2013 | 11 | 2013-11-19T21:40:33Z | 0 | 0 | 09000064814898fb | |||
| OCC-2011-0014-3267 | OCC | Volcker Rule - Prohibition on Proprietary Trading and Certain Relationships with Hedge Funds and Private Equity Funds OCC-2011-0014 | Phone Conference with Merkley_Levin Staff(November 5 2013) | Supporting & Related Material | Meeting Summary | 2013-11-19T05:00:00Z | 2013 | 11 | 2013-11-19T21:40:14Z | 0 | 0 | 09000064814898fc | |||
| OCC-2011-0014-3268 | OCC | Volcker Rule - Prohibition on Proprietary Trading and Certain Relationships with Hedge Funds and Private Equity Funds OCC-2011-0014 | Royal Bank of Canada Meeting | Supporting & Related Material | Meeting Summary | 2013-11-19T05:00:00Z | 2013 | 11 | 2013-11-19T21:41:18Z | 0 | 0 | 090000648148aeee | |||
| OCC-2011-0014-3260 | OCC | Volcker Rule - Prohibition on Proprietary Trading and Certain Relationships with Hedge Funds and Private Equity Funds OCC-2011-0014 | Public Citizen, Americans for Financial Reform, and Demos Meeting | Supporting & Related Material | Status | 2013-08-27T04:00:00Z | 2013 | 8 | 2016-02-25T20:18:39Z | 0 | 0 | 09000064813c7019 | |||
| OCC-2011-0014-3259 | OCC | Volcker Rule - Prohibition on Proprietary Trading and Certain Relationships with Hedge Funds and Private Equity Funds OCC-2011-0014 | EnerBank and CMS Energy Corporation Meeting | Supporting & Related Material | Status | 2013-08-27T04:00:00Z | 2013 | 8 | 2016-02-25T19:53:36Z | 0 | 0 | 09000064813c6e96 | |||
| OCC-2011-0014-3258 | OCC | Volcker Rule - Prohibition on Proprietary Trading and Certain Relationships with Hedge Funds and Private Equity Funds OCC-2011-0014 | Goldman Sachs - Meeting with Commenters | Supporting & Related Material | Meeting Summary | 2013-04-30T04:00:00Z | 2013 | 4 | 2013-04-30T16:02:51Z | 0 | 0 | 09000064812ae101 |
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;