documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "CFTC", document_type = "Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CFTC-2014-0062-0001 | CFTC | Exclusion of Utility Operations-Related Swaps with Utility Special Entities from De Minimis Threshold for Swaps with Special Entities | Rule | 2014-09-26T04:00:00Z | 2014 | 9 | 2014-09-26T04:00:00Z | 2014-09-26T13:36:29Z | 2014-22966 | 0 | 0 | 0900006481892c55 | |||
| CFTC-2014-0052-0001 | CFTC | Enhancing Protections Afforded Customers and Customer Funds Held by Futures Commission Merchants and Derivatives Clearing Organizations; Correction | Rule | 2014-07-30T04:00:00Z | 2014 | 7 | 2014-07-30T04:00:00Z | 2014-07-30T13:00:54Z | 2014-17934 | 0 | 0 | 09000064817ed70a | |||
| CFTC-2014-0049-0001 | CFTC | Dodd Frank Act: Conflicts of Interest Rules, Rules for Swap Dealers and Major Swap Participants, etc.; Correction | Rule | 2014-07-15T04:00:00Z | 2014 | 7 | 2014-07-15T04:00:00Z | 2014-07-15T13:16:05Z | 2014-16583 | 0 | 0 | 09000064817ad69d | |||
| CFTC-2014-0037-0001 | CFTC | Enhancing Protections Afforded Customers and Customer Funds Held by Futures Commission Merchants and Derivatives Clearing Organizations; Correction | Rule | 2014-05-12T04:00:00Z | 2014 | 5 | 2014-05-12T04:00:00Z | 2014-05-12T13:09:45Z | 2014-10650 | 0 | 0 | 09000064816efb0a | |||
| CFTC-2014-0025-0001 | CFTC | Swap Data Repositories: Access to SDR Data by Market Participants | Rule | 2014-03-26T04:00:00Z | 2014 | 3 | 2014-03-26T04:00:00Z | 2014-04-26T03:59:59Z | 2014-03-26T13:14:47Z | 2014-06574 | 0 | 0 | 0900006481681453 | ||
| CFTC-2014-0024-0001 | CFTC | Enhancing Protections Afforded Customers and Customer Funds Held by Futures Commission Merchants and Derivatives Clearing Organizations; Correction | Rule | 2014-03-13T04:00:00Z | 2014 | 3 | 2014-03-13T04:00:00Z | 2014-03-13T13:05:31Z | 2014-05465 | 0 | 0 | 09000064816637ce | |||
| CFTC-2014-0013-0001 | CFTC | Prohibitions and Restrictions on Proprietary Trading and Certain Interests in, and Relationships with, Hedge Funds and Private Equity Funds | Rule | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2014-01-31T14:19:12Z | 2013-31476 | 0 | 0 | 0900006481539ca3 | |||
| CFTC-2014-0004-0001 | CFTC | Cross-References to Bank Secrecy Act Regulations | Rule | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T05:00:00Z | 2014-01-14T16:17:01Z | 2014-00406 | 0 | 0 | 09000064815058c9 |
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;