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 = "Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2017-0058-0001 | CFTC | Margin Requirements for Uncleared Swaps for Swap Dealers and Major Swap Participants; Correction | Rule | 2017-11-28T05:00:00Z | 2017 | 11 | 2017-11-28T05:00:00Z | 2017-11-28T12:46:18Z | 2017-25627 | 0 | 0 | 0900006482cb6e7d | |||
| CFTC-2017-0054-0001 | CFTC | Establishing a New De Minimis Threshold Phase-In Termination Date | Rule | 2017-10-31T04:00:00Z | 2017 | 10 | 2017-10-31T04:00:00Z | 2017-10-31T12:06:41Z | 2017-23660 | 0 | 0 | 0900006482c287ab | |||
| CFTC-2017-0053-0001 | CFTC | Comparability Determination for European Union: Margin Requirements for Uncleared Swaps for Swap Dealers and Major Swap Participants | Rule | 2017-10-18T04:00:00Z | 2017 | 10 | 2017-10-18T04:00:00Z | 2017-10-18T12:13:27Z | 2017-22616 | 0 | 0 | 0900006482bdde7f | |||
| CFTC-2017-0050-0001 | CFTC | Commission Delegated Authority Provisions for Designated Contract Markets' System Safeguards Requirements | Rule | 2017-09-29T04:00:00Z | 2017 | 9 | 2017-09-29T04:00:00Z | 2017-09-29T11:49:11Z | 2017-20924 | 0 | 0 | 0900006482b8b24e | |||
| CFTC-2017-0039-0001 | CFTC | Commission Delegated Authority Provisions and Technical Amendments | Rule | 2017-06-26T04:00:00Z | 2017 | 6 | 2017-06-26T04:00:00Z | 2017-06-26T11:53:10Z | 2017-13243 | 0 | 0 | 090000648278cf38 | |||
| CFTC-2017-0038-0001 | CFTC | Revisions to Freedom of Information Act Regulations | Rule | 2017-06-20T04:00:00Z | 2017 | 6 | 2017-06-20T04:00:00Z | 2017-08-22T03:59:59Z | 2017-06-20T11:55:02Z | 2017-12775 | 0 | 0 | 09000064826f5d65 | ||
| CFTC-2017-0031-0001 | CFTC | Recordkeeping | Rule | 2017-05-30T04:00:00Z | 2017 | 5 | 2017-05-30T04:00:00Z | 2017-05-30T12:01:39Z | 2017-11014 | 0 | 0 | 0900006482665e75 | |||
| CFTC-2017-0032-0001 | CFTC | Whistleblower Awards Process | Rule | 2017-05-30T04:00:00Z | 2017 | 5 | 2017-05-30T04:00:00Z | 2017-05-30T12:02:58Z | 2017-10801 | 0 | 0 | 0900006482665fed | |||
| CFTC-2017-0004-0001 | CFTC | Adjustment of Civil Monetary Penalties for Inflation | Rule | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-01-20T15:40:17Z | 2017-00488 | 0 | 0 | 0900006482489214 |
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;