documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OCC-2018-0010" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_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-2018-0010-0155 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2018-0010 | Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships with, Hedge Funds and Private Equity Funds | Rule | Final Rule | 2019-11-14T05:00:00Z | 2019 | 11 | 2019-11-14T05:00:00Z | 2019-11-14T13:41:25Z | 2019-22695 | 0 | 0 | 09000064841537ab | |
| OCC-2018-0010-0153 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2018-0010 | Summary of 07.11.2019 meeting with State Street | Supporting & Related Material | Meeting Summary | 2019-07-25T04:00:00Z | 2019 | 7 | 2019-07-25T18:55:45Z | 0 | 0 | 0900006483db88a4 | |||
| OCC-2018-0010-0154 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2018-0010 | Summary of 07.16.2019 meeting with TD Bank | Supporting & Related Material | Meeting Summary | 2019-07-25T04:00:00Z | 2019 | 7 | 2019-07-25T19:12:29Z | 0 | 0 | 0900006483db91e5 | |||
| OCC-2018-0010-0149 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2018-0010 | Summary of 5.20.2019 Meeting with the EBF, BNP Paribas, Crid Agricole CIB, Natixis CIB Americas and Credit Suisse | Supporting & Related Material | 2019-06-03T04:00:00Z | 2019 | 6 | 2019-06-03T15:29:12Z | 0 | 0 | 0900006483ce186a | ||||
| OCC-2018-0010-0148 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2018-0010 | Summary of 5.6.2019 Meeting with the IIB | Supporting & Related Material | 2019-05-06T04:00:00Z | 2019 | 5 | 2019-05-06T18:51:34Z | 0 | 0 | 0900006483c3a574 | ||||
| OCC-2018-0010-0147 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2018-0010 | Summary of 4.12.19 Meeting with BPI | Supporting & Related Material | 2019-04-15T04:00:00Z | 2019 | 4 | 2019-04-15T18:53:17Z | 0 | 0 | 0900006483ba7942 | ||||
| OCC-2018-0010-0146 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2018-0010 | Summary of 2.12 Meeting with SFIG Mayer Brown and Citi | Supporting & Related Material | Meeting Summary | 2019-02-14T05:00:00Z | 2019 | 2 | 2019-02-14T15:14:24Z | 0 | 0 | 0900006483a7541d | |||
| OCC-2018-0010-0145 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2018-0010 | Summary of 2.6.19 Meeting with the ABA BOK Northern Trust PNC Flagstar and BNY Mellon | Supporting & Related Material | Meeting Summary | 2019-02-14T05:00:00Z | 2019 | 2 | 2019-02-14T15:12:27Z | 0 | 0 | 0900006483a753ef |
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;