documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "CFTC", document_type = "Proposed Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, 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-2008-0113-0001 | CFTC | Significant Price Discovery Contracts on Exempt Commercial Markets | Proposed Rule | 2008-12-12T05:00:00Z | 2008 | 12 | 2008-12-12T05:00:00Z | 2009-02-11T04:59:59Z | 2008-12-31T12:14:23Z | E8-28867 | 0 | 0 | 09000064807d8869 | ||
| CFTC-2008-0112-0001 | CFTC | Electronic Filing of Disclosure Documents | Proposed Rule | 2008-11-26T05:00:00Z | 2008 | 11 | 2008-11-26T05:00:00Z | 2008-12-27T04:59:59Z | 2011-06-11T17:03:55Z | E8-28177 | 0 | 0 | 09000064807c1049 | ||
| CFTC-2008-0100-0001 | CFTC | Execution of Transactions: Regulation 1.38 and Guidance on Core Principle 9 | Proposed Rule | 2008-11-14T05:00:00Z | 2008 | 11 | 2008-11-14T05:00:00Z | 2009-01-06T04:59:59Z | 2008-12-31T12:12:41Z | E8-27121 | 0 | 0 | 09000064807a8f99 | ||
| CFTC-2008-0078-0001 | CFTC | Execution of Transactions: Regulation 1.38 and Guidance on Core Principle 9 | Proposed Rule | 2008-09-18T04:00:00Z | 2008 | 9 | 2008-09-18T04:00:00Z | 2008-11-18T04:59:59Z | 2008-11-14T12:08:54Z | E8-21865 | 0 | 0 | 090000648070ccc5 | ||
| CFTC-2008-0067-0001 | CFTC | Confidential Information and Commission Records and Information | Proposed Rule | 2008-09-08T04:00:00Z | 2008 | 9 | 2008-09-08T04:00:00Z | 2008-09-18T03:59:59Z | 2011-06-11T17:03:53Z | E8-20684 | 0 | 0 | 09000064806f82f6 | ||
| CFTC-2008-0061-0001 | CFTC | Confidential Information and Commission Records and Information | Proposed Rule | 2008-08-01T04:00:00Z | 2008 | 8 | 2008-08-01T04:00:00Z | 2008-09-03T03:59:59Z | 2011-06-11T17:03:53Z | E8-17529 | 0 | 0 | 09000064806a5f68 | ||
| CFTC-2008-0052-0001 | CFTC | Risk Management Exemption From Federal Speculative Position Limits | Proposed Rule | 2008-06-06T04:00:00Z | 2008 | 6 | 2008-06-06T04:00:00Z | 2011-06-11T17:03:52Z | E8-12723 | 0 | 0 | 090000648061439b | |||
| CFTC-2008-0053-0001 | CFTC | Revision of Federal Speculative Position Limits | Proposed Rule | 2008-06-06T04:00:00Z | 2008 | 6 | 2008-06-06T04:00:00Z | 2011-06-11T17:03:53Z | E8-12728 | 0 | 0 | 0900006480614415 | |||
| CFTC-2008-0010-0001 | CFTC | Exemption From Registration for Certain Firms With Regulation 30.10 Relief | Proposed Rule | 2008-01-25T05:00:00Z | 2008 | 1 | 2008-01-25T05:00:00Z | 2008-02-26T04:59:59Z | 2011-06-11T17:03:51Z | E8-00979 | 0 | 0 | 09000064803a2377 |
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;