documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "SEC", document_type = "Proposed Rule" and posted_year = 2024 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), 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| SEC-2024-1787-0001 | SEC | List of Rules to be Reviewed Pursuant to the Regulatory Flexibility Act | Proposed Rule | 2024-12-10T05:00:00Z | 2024 | 12 | 2024-12-10T05:00:00Z | 2025-01-10T04:59:59Z | 2024-12-10T13:49:09Z | 2024-28353 | 0 | 0 | 090000648685f186 | ||
| SEC-2024-1144-0001 | SEC | Financial Data Transparency Act Joint Data Standards | Proposed Rule | 2024-08-22T04:00:00Z | 2024 | 8 | 2024-08-22T04:00:00Z | 2024-10-22T03:59:59Z | 2024-08-22T13:11:08Z | 2024-18415 | 0 | 0 | 090000648665c44c | ||
| SEC-2024-1111-0001 | SEC | Regulatory Flexibility Agenda | Proposed Rule | 2024-08-16T04:00:00Z | 2024 | 8 | 2024-08-16T04:00:00Z | 2024-09-17T03:59:59Z | 2024-08-16T12:31:23Z | 2024-16470 | 0 | 0 | 090000648664da3d | ||
| SEC-2024-0688-0001 | SEC | Customer Identification Programs for Registered Investment Advisers and Exempt Reporting Advisers | Proposed Rule | 2024-05-21T04:00:00Z | 2024 | 5 | 2024-05-21T04:00:00Z | 2024-07-23T03:59:59Z | 2024-05-21T12:03:09Z | 2024-10738 | 0 | 0 | 0900006486575b25 | ||
| SEC-2024-0362-0001 | SEC | Conflicts of Interest Associated with the Use of Predictive Data Analytics by Broker-Dealers and Investment Advisers: Correction | Proposed Rule | 2024-03-18T04:00:00Z | 2024 | 3 | 2024-03-18T04:00:00Z | 2024-03-20T12:36:00Z | 2024-05623 | 0 | 0 | 0900006486481133 | |||
| SEC-2024-0359-0001 | SEC | Exemption for Certain Investment Advisers Operating through the Internet: Correction | Proposed Rule | 2024-03-18T04:00:00Z | 2024 | 3 | 2024-03-18T04:00:00Z | 2024-03-20T12:35:59Z | 2024-05624 | 0 | 0 | 0900006486480882 | |||
| SEC-2024-0357-0001 | SEC | EDGAR Filer Access and Account Management: Correction | Proposed Rule | 2024-03-18T04:00:00Z | 2024 | 3 | 2024-03-18T04:00:00Z | 2024-03-20T12:35:58Z | 2024-05625 | 0 | 0 | 0900006486480835 | |||
| SEC-2022-0655-0001 | SEC | None SEC-2022-0655 | Enhancement and Standardization of Climate-Related Disclosures for Investors | Proposed Rule | 2024-03-08T05:00:00Z | 2024 | 3 | 2024-03-08T05:00:00Z | 2022-06-18T03:59:59Z | 2024-03-08T16:47:16Z | 2022-10194 | 0 | 0 | 0900006485072d70 | |
| SEC-2024-0237-0001 | SEC | Qualifying Venture Capital Funds Inflation Adjustment | Proposed Rule | 2024-02-21T05:00:00Z | 2024 | 2 | 2024-02-21T05:00:00Z | 2024-03-23T03:59:59Z | 2024-02-21T15:25:44Z | 2024-03436 | 0 | 0 | 0900006486421a90 | ||
| SEC-2024-0173-0001 | SEC | Regulatory Flexibility Agenda | Proposed Rule | 2024-02-09T05:00:00Z | 2024 | 2 | 2024-02-09T05:00:00Z | 2024-03-12T03:59:59Z | 2024-02-09T14:49:39Z | 2024-00469 | 0 | 0 | 09000064863f7d44 |
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;