documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OCC-2020-0002" 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), 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-2020-0002-0054 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2020-0002 | Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds; Correction | Rule | 2020-09-25T04:00:00Z | 2020 | 9 | 2020-09-25T04:00:00Z | 2020-09-28T13:59:35Z | 2020-21100 | 0 | 0 | 090000648487958a | ||
| OCC-2020-0002-0053 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2020-0002 | Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds | Rule | Final Rule | 2020-07-31T04:00:00Z | 2020 | 7 | 2020-07-31T04:00:00Z | 2020-07-31T17:20:35Z | 2020-15525 | 0 | 0 | 09000064847c34e8 | |
| OCC-2020-0002-0013 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2020-0002 | Summary of 11.25.19 Meeting with SIFMA | Supporting & Related Material | Meeting Summary | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T18:38:08Z | 0 | 0 | 09000064843c8130 | |||
| OCC-2020-0002-0010 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2020-0002 | Summary of 10.28.19 Meeting with FSF | Supporting & Related Material | Meeting Summary | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T18:36:48Z | 0 | 0 | 09000064843c812d | |||
| OCC-2020-0002-0009 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2020-0002 | Summary of 9.24.19 Meeting with Sullivan & Cromwell | Supporting & Related Material | Meeting Summary | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T18:36:05Z | 0 | 0 | 09000064843c812c | |||
| OCC-2020-0002-0011 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2020-0002 | Summary of 11.1.19 Meeting with LSTA | Supporting & Related Material | Meeting Summary | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T18:37:16Z | 0 | 0 | 09000064843c812e | |||
| OCC-2020-0002-0012 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2020-0002 | Summary of 11.7.19 Meeting with GS | Supporting & Related Material | Meeting Summary | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T18:37:44Z | 0 | 0 | 09000064843c812f | |||
| OCC-2020-0002-0001 | OCC | Proposed Revisions to Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships With, Hedge Funds and Private Equity Funds OCC-2020-0002 | Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships with, Hedge Funds and Private Equity Funds | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T05:00:00Z | 2020-04-02T03:59:59Z | 2020-05-01T01:00:50Z | 2020-02707 | 0 | 0 | 09000064843c51b7 |
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;