documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "OCC-2011-0008" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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-2011-0008-0203 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | Margin and Capital Requirements for Covered Swap Entities | Rule | 2015-11-30T05:00:00Z | 2015 | 11 | 2015-11-30T05:00:00Z | 2015-11-30T18:17:47Z | 2015-28671 | 0 | 0 | 0900006481d7971b | ||
| OCC-2011-0008-0202 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | Economic Impact Analysis for Swaps Margin Final Rule | Supporting & Related Material | 2015-10-22T04:00:00Z | 2015 | 10 | 2015-10-22T18:47:50Z | 0 | 0 | 0900006481ce297b | ||||
| OCC-2011-0008-0196 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | SIFMA AMG meeting summary 3-24-15 | Supporting & Related Material | 2015-06-24T04:00:00Z | 2015 | 6 | 2015-06-24T21:17:34Z | 0 | 0 | 0900006481b530f1 | ||||
| OCC-2011-0008-0197 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | SIFMA meeting summary 3-17-15 | Supporting & Related Material | 2015-06-24T04:00:00Z | 2015 | 6 | 2015-06-24T21:19:34Z | 0 | 0 | 0900006481b530f2 | ||||
| OCC-2011-0008-0198 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | State Street and BNY and Northern Trust meeting summary 4-14-15 | Supporting & Related Material | 2015-06-24T04:00:00Z | 2015 | 6 | 2015-06-24T21:19:55Z | 0 | 0 | 0900006481b530f3 | ||||
| OCC-2011-0008-0189 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | Meeting with the Bank of America 11-07-14 | Supporting & Related Material | 2015-03-26T04:00:00Z | 2015 | 3 | 2016-10-31T15:08:06Z | 0 | 0 | 0900006481a696cc | ||||
| OCC-2011-0008-0190 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | Meeting with the ACLI 01-08-15 | Supporting & Related Material | 2015-03-26T04:00:00Z | 2015 | 3 | 2016-10-31T15:08:06Z | 0 | 0 | 0900006481a696cd | ||||
| OCC-2011-0008-0192 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | Meeting with The Clearing House and the ABA 02-20-15 | Supporting & Related Material | 2015-03-26T04:00:00Z | 2015 | 3 | 2016-10-31T15:08:07Z | 0 | 0 | 0900006481a696cf | ||||
| OCC-2011-0008-0191 | OCC | Margin and Capital Requirements for Covered Swap Entities OCC-2011-0008 | Meeting with the Global Pension Coalition 02-03-15 | Supporting & Related Material | 2015-03-26T04:00:00Z | 2015 | 3 | 2016-10-31T15:08:07Z | 0 | 0 | 0900006481a696ce |
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;