documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "CFTC", document_type = "Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-2021-0042-0001 | CFTC | Changing Position Title of Judgment Officer to Administrative Judge | Rule | 2021-11-18T05:00:00Z | 2021 | 11 | 2021-11-18T05:00:00Z | 2021-11-18T13:19:38Z | 2021-24449 | 0 | 0 | 0900006484e5fd05 | |||
| CFTC-2021-0021-0001 | CFTC | Bankruptcy Regulations | Rule | 2021-04-13T04:00:00Z | 2021 | 4 | 2021-04-13T04:00:00Z | 2021-04-13T11:53:48Z | 2020-28300 | 0 | 0 | 0900006484aa47ff | |||
| CFTC-2021-0015-0001 | CFTC | Swap Execution Facilities | Rule | 2021-02-11T05:00:00Z | 2021 | 2 | 2021-02-11T05:00:00Z | 2021-02-11T12:39:23Z | 2020-28944 | 0 | 0 | 0900006484a32932 | |||
| CFTC-2021-0014-0001 | CFTC | Exemptions from Swap Trade Execution Requirement | Rule | 2021-02-11T05:00:00Z | 2021 | 2 | 2021-02-11T05:00:00Z | 2021-02-11T12:38:23Z | 2020-28943 | 0 | 0 | 0900006484a2e454 | |||
| CFTC-2021-0012-0001 | CFTC | Annual Adjustment of Civil Monetary Penalties To Reflect Inflation | Rule | 2021-02-02T05:00:00Z | 2021 | 2 | 2021-02-02T05:00:00Z | 2021-02-02T12:57:02Z | 2021-00897 | 0 | 0 | 0900006484a13d5d | |||
| CFTC-2021-0008-0001 | CFTC | Margin Requirements for Uncleared Swaps for Swap Dealers and Major Swap Participants | Rule | 2021-01-25T05:00:00Z | 2021 | 1 | 2021-01-25T05:00:00Z | 2021-01-25T12:38:07Z | 2020-27508 | 0 | 0 | 09000064849feae0 | |||
| CFTC-2021-0005-0001 | CFTC | Position Limits for Derivatives | Rule | 2021-01-14T05:00:00Z | 2021 | 1 | 2021-01-14T05:00:00Z | 2021-01-14T13:34:23Z | 2020-25332 | 0 | 0 | 09000064849f27d7 | |||
| CFTC-2021-0004-0001 | CFTC | Electronic Trading Risk Principles | Rule | 2021-01-11T05:00:00Z | 2021 | 1 | 2021-01-11T05:00:00Z | 2021-01-11T12:47:31Z | 2020-27622 | 0 | 0 | 09000064849ec3ad | |||
| CFTC-2021-0003-0001 | CFTC | Exemption From Derivatives Clearing Organization Registration | Rule | 2021-01-07T05:00:00Z | 2021 | 1 | 2021-01-07T05:00:00Z | 2021-01-07T12:55:39Z | 2020-26527 | 0 | 0 | 09000064849e571e | |||
| CFTC-2021-0002-0001 | CFTC | Margin Requirements for Uncleared Swaps for Swap Dealers and Major Swap Participants | Rule | 2021-01-05T05:00:00Z | 2021 | 1 | 2021-01-05T05:00:00Z | 2021-01-05T12:50:44Z | 2020-27736 | 0 | 0 | 09000064849de6e8 | |||
| CFTC-2021-0001-0001 | CFTC | Portfolio Reconciliation Requirements: Swap Dealers and Major Swap Participants; Revision of Material Terms Definition | Rule | 2021-01-05T05:00:00Z | 2021 | 1 | 2021-01-05T05:00:00Z | 2021-01-05T12:48:32Z | 2020-26536 | 0 | 0 | 09000064849de61f |
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;