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 = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2008-0123-0001 | CFTC | Delegation of Authority and Change in Position Title | Rule | 2008-12-30T05:00:00Z | 2008 | 12 | 2008-12-30T05:00:00Z | 2008-12-30T12:15:09Z | E8-31001 | 0 | 0 | 09000064808079cc | |||
| CFTC-2008-0105-0001 | CFTC | Rules Relating to Reparation Proceedings | Rule | 2008-11-20T05:00:00Z | 2008 | 11 | 2008-11-20T05:00:00Z | 2011-06-11T17:03:55Z | E8-27177 | 0 | 0 | 09000064807b3652 | |||
| CFTC-2008-0097-0001 | CFTC | Interpretative Statement Regarding Funds Related to Cleared-Only Contracts Determined To Be Included in a Customers Net Equity | Rule | 2008-11-04T05:00:00Z | 2008 | 11 | 2008-11-04T05:00:00Z | 2008-11-04T12:10:35Z | E8-26199 | 0 | 0 | 09000064807938cb | |||
| CFTC-2008-0093-0001 | CFTC | Proceedings Before the Commodity Futures Trading Commission | Rule | 2008-10-24T04:00:00Z | 2008 | 10 | 2008-10-24T04:00:00Z | 2011-06-11T17:03:54Z | E8-25354 | 0 | 0 | 0900006480776d76 | |||
| CFTC-2008-0089-0001 | CFTC | Foreign Futures and Options Transactions | Rule | 2008-10-14T04:00:00Z | 2008 | 10 | 2008-10-14T04:00:00Z | 2008-10-14T11:17:59Z | E8-24315 | 0 | 0 | 090000648074f287 | |||
| CFTC-2008-0087-0001 | CFTC | Adjustment of Civil Monetary Penalties for Inflation | Rule | 2008-10-03T04:00:00Z | 2008 | 10 | 2008-10-03T04:00:00Z | 2011-06-11T17:03:54Z | E8-23417 | 0 | 0 | 0900006480734929 | |||
| CFTC-2008-0080-0001 | CFTC | Interpretative Statement Regarding Funds Related to Cleared-Only Contracts Determined To Be Included in a Customers Net Equity | Rule | 2008-10-02T04:00:00Z | 2008 | 10 | 2008-10-02T04:00:00Z | 2008-10-02T16:19:38Z | E8-23277 | 0 | 0 | 0900006480733329 | |||
| CFTC-2008-0079-0001 | CFTC | Exemption From Registration for Certain Firms With Regulation 30.10 Relief | Rule | 2008-09-18T04:00:00Z | 2008 | 9 | 2008-09-18T04:00:00Z | 2011-06-11T17:03:54Z | E8-21857 | 0 | 0 | 090000648070cd46 | |||
| CFTC-2008-0057-0001 | CFTC | Limited Marketing Activities From a United States Location by Certain Firms and Their Employees or Other Representatives Exempted Under Commodity Futures Trading Commission Regulation 30.10 | Rule | 2008-07-09T04:00:00Z | 2008 | 7 | 2008-07-09T04:00:00Z | 2008-07-09T11:04:56Z | E8-15606 | 0 | 0 | 0900006480660169 | |||
| CFTC-2008-0014-0001 | CFTC | Amendments Pertinent to Registered Entities and Exempt Commercial Markets | Rule | 2008-02-14T05:00:00Z | 2008 | 2 | 2008-02-14T05:00:00Z | 2011-06-11T17:03:51Z | E8-02580 | 0 | 0 | 09000064803ae8d8 |
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;