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 = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CFTC-2006-0091-0001 | CFTC | Financial Reporting Requirements for Introducing Brokers | Rule | 2006-11-22T05:00:00Z | 2006 | 11 | 2006-11-22T05:00:00Z | 2011-06-11T17:03:44Z | E6-19533 | 0 | 0 | 09000064801e4422 | |||
| CFTC-2006-0085-0001 | CFTC | Boards of Trade Located Outside of the United States and No- Action Relief From the Requirement To Become a Designated Contract Market or Derivatives Transaction Execution Facility | Rule | 2006-11-02T05:00:00Z | 2006 | 11 | 2006-11-02T05:00:00Z | 2008-01-07T22:37:52Z | E6-18513 | 0 | 0 | 09000064801dc9a6 | |||
| CFTC-2006-0054-0001 | CFTC | Foreign Futures and Options Transactions | Rule | 2006-07-17T04:00:00Z | 2006 | 7 | 2006-07-17T04:00:00Z | 2008-01-07T22:37:53Z | E6-11152 | 0 | 0 | 090000648019f402 | |||
| CFTC-2006-0049-0001 | CFTC | Joint Final Rules: Application of the Definition of Narrow-Based Security Index to Debt Securities Indexes and Security Futures on Debt Securities | Rule | 2006-07-13T04:00:00Z | 2006 | 7 | 2006-07-13T04:00:00Z | 2011-06-11T17:03:42Z | 06-06136 | 0 | 0 | 090000648019c498 | |||
| CFTC-2006-0047-0001 | CFTC | Market and Large Trader Reporting | Rule | 2006-07-03T04:00:00Z | 2006 | 7 | 2006-07-03T04:00:00Z | 2011-06-11T17:03:41Z | E6-10383 | 0 | 0 | 0900006480194ba2 | |||
| CFTC-2006-0015-0001 | CFTC | Definition of ``Client of a Commodity Trading Advisor | Rule | 2006-02-24T05:00:00Z | 2006 | 2 | 2006-02-24T05:00:00Z | 2011-06-11T17:03:41Z | 06-01745 | 0 | 0 | 090000648013863e | |||
| CFTC-2006-0014-0001 | CFTC | Commodity Pool Operator Electronic Filing of Annual Reports | Rule | 2006-02-22T05:00:00Z | 2006 | 2 | 2006-02-22T05:00:00Z | 2011-06-11T17:03:40Z | 06-01615 | 0 | 0 | 09000064801362ef | |||
| CFTC-2005-0018-0003 | CFTC | Alternative Market Risk and Credit Risk Capital Charges for Futures Commission Merchants and Specified Foreign Currency Forward and Inventory Capital Charges | Rule | 2006-02-21T05:00:00Z | 2006 | 2 | 2006-02-21T05:00:00Z | 2008-01-07T22:37:51Z | C6-00982 | 0 | 0 | 09000064801351b2 | |||
| CFTC-2005-0018-0002 | CFTC | Alternative Market Risk and Credit Risk Capital Charges for Futures Commission Merchants and Specified Foreign Currency Forwardand Inventory Capital Charges | Rule | 2006-02-02T05:00:00Z | 2006 | 2 | 2006-02-02T05:00:00Z | 2011-06-11T17:03:39Z | 06-00982 | 0 | 0 | 0900006480125153 | |||
| CFTC-2006-0001-0001 | CFTC | Technical and Clarifying Amendments to Rules for Exempt Markets, Derivatives Transaction Execution Facilities and Designated Contract Markets, and Procedural Changes for Derivatives Clearing Organization Registration Applications | Rule | 2006-01-12T05:00:00Z | 2006 | 1 | 2006-01-12T05:00:00Z | 2011-06-11T17:03:40Z | 06-00242 | 0 | 0 | 090000648010f57f |
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;