documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "CFTC", document_type = "Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2023-0099-0001 | CFTC | Fees for Reviews of the Rule Enforcement Programs of Designated Contract Markets and Registered Futures Associations | Rule | 2023-10-30T04:00:00Z | 2023 | 10 | 2023-10-30T04:00:00Z | 2023-10-30T12:35:25Z | 2023-23821 | 0 | 0 | 09000064861844a0 | |||
| CFTC-2023-0069-0001 | CFTC | Reporting and Information Requirements for Derivatives Clearing Organizations | Rule | 2023-08-08T04:00:00Z | 2023 | 8 | 2023-08-08T04:00:00Z | 2023-08-08T12:12:08Z | 2023-16591 | 0 | 0 | 0900006485dfb75c | |||
| CFTC-2023-0061-0001 | CFTC | Governance Requirements for Derivatives Clearing Organizations | Rule | 2023-07-13T04:00:00Z | 2023 | 7 | 2023-07-13T04:00:00Z | 2023-07-13T12:00:21Z | 2023-14361 | 0 | 0 | 0900006485c9d97d | |||
| CFTC-2023-0018-0001 | CFTC | Order: Designating the Unique Product Identifier and Product Classification System To Be Used in Recordkeeping and Swap Data Reporting | Rule | 2023-02-24T05:00:00Z | 2023 | 2 | 2023-02-24T05:00:00Z | 2023-02-24T13:34:28Z | 2023-03661 | 0 | 0 | 09000064856fe5c0 | |||
| CFTC-2023-0011-0001 | CFTC | Reporting, Recordkeeping, Daily Trading Records, and Swap Documentation Requirements for Swap Dealers and Major Swap Participants; Corrections | Rule | 2023-02-10T05:00:00Z | 2023 | 2 | 2023-02-10T05:00:00Z | 2023-02-10T12:49:56Z | 2023-01979 | 0 | 0 | 0900006485653f14 | |||
| CFTC-2023-0002-0001 | CFTC | Civil Monetary Penalty Inflation Adjustment | Rule | 2023-01-11T05:00:00Z | 2023 | 1 | 2023-01-11T05:00:00Z | 2023-01-11T12:45:40Z | 2023-00396 | 0 | 0 | 09000064855dd519 |
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;