documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "CFTC", document_type = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2015-0088-0001 | CFTC | Records of Commodity Interest and Related Cash or Forward Transactions, | Rule | 2015-12-24T05:00:00Z | 2015 | 12 | 2015-12-24T05:00:00Z | 2015-12-24T13:33:57Z | 2015-32416 | 0 | 0 | 0900006481dd06ce | |||
| CFTC-2015-0059-0001 | CFTC | Repeal of the Exempt Commercial Market and Exempt Board of Trade Exemptions | Rule | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-02T04:00:00Z | 2015-10-02T13:07:33Z | 2015-25029 | 0 | 0 | 0900006481caa484 | |||
| CFTC-2015-0056-0001 | CFTC | Membership in a Registered Futures Association | Rule | 2015-09-14T04:00:00Z | 2015 | 9 | 2015-09-14T04:00:00Z | 2015-09-14T12:58:44Z | 2015-23046 | 0 | 0 | 0900006481c6c299 | |||
| CFTC-2015-0035-0001 | CFTC | Commission Proceedings: Suspension or Disbarment from Appearance and Practice | Rule | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T04:00:00Z | 2015-06-10T12:17:05Z | 2015-14159 | 0 | 0 | 0900006481b28cd1 | |||
| CFTC-2015-0014-0001 | CFTC | Foreign Futures and Options Transactions | Rule | 2015-03-25T04:00:00Z | 2015 | 3 | 2015-03-25T04:00:00Z | 2015-03-25T13:10:48Z | 2015-06687 | 0 | 0 | 0900006481a630e1 | |||
| CFTC-2015-0013-0001 | CFTC | Residual Interest Deadline for Futures Commission Merchants | Rule | 2015-03-24T04:00:00Z | 2015 | 3 | 2015-03-24T04:00:00Z | 2015-03-24T12:50:55Z | 2015-06548 | 0 | 0 | 0900006481a5d5a8 | |||
| CFTC-2015-0011-0001 | CFTC | Initial Response to District Court Remand Order: Securities Industry and Financial Markets Association, et al. v. United States Commodity Futures Trading Commission | Rule | 2015-03-10T04:00:00Z | 2015 | 3 | 2015-03-10T04:00:00Z | 2015-05-12T03:59:59Z | 2015-03-10T13:11:03Z | 2015-05413 | 0 | 0 | 0900006481a37b54 |
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;