documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "CFTC", document_type = "Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_end_date (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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CFTC-2018-0077-0001 | CFTC | Margin Requirements for Uncleared Swaps for Swap Dealers and Major Swap Participants | Rule | 2018-11-26T05:00:00Z | 2018 | 11 | 2018-11-26T05:00:00Z | 2018-11-26T13:03:37Z | 2018-25602 | 0 | 0 | 09000064838fa22c | |||
| CFTC-2018-0073-0001 | CFTC | De Minimis Exception to the Swap Dealer Definition | Rule | 2018-11-13T05:00:00Z | 2018 | 11 | 2018-11-13T05:00:00Z | 2018-11-13T12:49:15Z | 2018-24579 | 0 | 0 | 09000064838ceb6f | |||
| CFTC-2018-0053-0001 | CFTC | Chief Compliance Officer Duties and Annual Report Requirements for Futures Commission Merchants, Swap Dealers, and Major Swap Participants | Rule | 2018-08-27T04:00:00Z | 2018 | 8 | 2018-08-27T04:00:00Z | 2018-08-27T11:48:51Z | 2018-18432 | 0 | 0 | 0900006483659c0d | |||
| CFTC-2018-0037-0001 | CFTC | Adaptation of Regulations to Incorporate Swaps; Correction | Rule | 2018-06-29T04:00:00Z | 2018 | 6 | 2018-06-29T04:00:00Z | 2018-06-29T12:46:48Z | 2018-13256 | 0 | 0 | 0900006483479125 | |||
| CFTC-2018-0032-0001 | CFTC | Swap Data Access Provisions and Certain Other Matters | Rule | 2018-06-12T04:00:00Z | 2018 | 6 | 2018-06-12T04:00:00Z | 2018-06-12T11:54:33Z | 2018-12377 | 0 | 0 | 09000064833ed41f | |||
| CFTC-2018-0025-0001 | CFTC | Foreign Futures and Options Transactions | Rule | 2018-05-22T04:00:00Z | 2018 | 5 | 2018-05-22T04:00:00Z | 2018-05-22T11:55:45Z | 2018-10902 | 0 | 0 | 09000064832ad860 | |||
| CFTC-2018-0015-0001 | CFTC | Annual Adjustment of Civil Monetary Penalties to Reflect Inflation-2018 | Rule | 2018-03-06T05:00:00Z | 2018 | 3 | 2018-03-06T05:00:00Z | 2018-03-06T12:48:15Z | 2018-04480 | 0 | 0 | 0900006482f97725 | |||
| CFTC-2018-0012-0001 | CFTC | Definitions | Rule | 2018-02-23T05:00:00Z | 2018 | 2 | 2018-02-23T05:00:00Z | 2018-03-27T03:59:59Z | 2018-02-23T12:47:25Z | 2018-03590 | 0 | 0 | 0900006482f55f6a | ||
| CFTC-2018-0004-0001 | CFTC | Performance of Certain Functions by the National Futures Association With Respect to the Receipt and Processing of Exchange Disciplinary and Access Denial Action Information | Rule | 2018-01-12T05:00:00Z | 2018 | 1 | 2018-01-12T05:00:00Z | 2018-01-12T13:14:10Z | 2018-00468 | 0 | 0 | 0900006482deadc7 | |||
| CFTC-2018-0005-0001 | CFTC | Technical Amendments to Rules on Registration and Review of Exchange Disciplinary, Access Denial or Other Adverse Actions | Rule | 2018-01-12T05:00:00Z | 2018 | 1 | 2018-01-12T05:00:00Z | 2018-01-12T13:14:36Z | 2018-00467 | 0 | 0 | 0900006482deae15 |
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;