documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "CFTC", document_type = "Proposed Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, comment_end_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-2022-0091-0001 | CFTC | Reporting and Information Requirements for Derivatives Clearing Organizations | Proposed Rule | 2022-12-15T05:00:00Z | 2022 | 12 | 2022-12-15T05:00:00Z | 2023-02-14T04:59:59Z | 2022-12-15T12:45:04Z | 2022-26849 | 0 | 0 | 0900006485538387 | ||
| CFTC-2022-0089-0001 | CFTC | Application: Capital Comparability Determination Submitted on behalf of Nonbank Swap Dealers subject to Regulation by the Mexican Comision Nacional Bancaria y de Valores | Proposed Rule | 2022-12-13T05:00:00Z | 2022 | 12 | 2022-12-13T05:00:00Z | 2023-02-14T04:59:59Z | 2022-12-13T12:37:25Z | 2022-26758 | 0 | 0 | 090000648553244e | ||
| CFTC-2022-0063-0001 | CFTC | Form PF; Reporting Requirements for All Filers and Large Hedge Fund Advisers | Proposed Rule | 2022-09-07T04:00:00Z | 2022 | 9 | 2022-09-07T04:00:00Z | 2022-09-07T11:44:54Z | C1-2022-17724 | 0 | 0 | 09000064852bf6a5 | |||
| CFTC-2022-0061-0001 | CFTC | Form PF; Reporting Requirements for All Filers and Large Hedge Fund Advisers | Proposed Rule | 2022-09-01T04:00:00Z | 2022 | 9 | 2022-09-01T04:00:00Z | 2022-10-12T03:59:59Z | 2022-09-01T11:42:25Z | 2022-17724 | 0 | 0 | 09000064852a2b61 | ||
| CFTC-2022-0054-0001 | CFTC | Governance Requirements for Derivatives Clearing Organizations | Proposed Rule | 2022-08-11T04:00:00Z | 2022 | 8 | 2022-08-11T04:00:00Z | 2022-10-12T03:59:59Z | 2022-08-11T13:50:06Z | 2022-16683 | 0 | 0 | 090000648522feda | ||
| CFTC-2022-0051-0001 | CFTC | Proposed Order: Application for a Capital Comparability Determination From the Financial Services Agency of Japan | Proposed Rule | 2022-08-08T04:00:00Z | 2022 | 8 | 2022-08-08T04:00:00Z | 2022-10-08T03:59:59Z | 2022-08-08T11:53:07Z | 2022-16684 | 0 | 0 | 0900006485220cbd | ||
| CFTC-2022-0026-0001 | CFTC | Clearing Requirement Determination Under the Commodity Exchange Act: Interest Rate Swaps To Account for the Transition From London Interbank Offered Rate and Other Interbank Offered Rates to Alternative Reference Rates | Proposed Rule | 2022-05-31T04:00:00Z | 2022 | 5 | 2022-05-31T04:00:00Z | 2022-07-01T03:59:59Z | 2022-05-31T12:10:49Z | 2022-10490 | 0 | 0 | 090000648511a3f8 |
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;