documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EBSA-2023-0014" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EBSA 7
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EBSA-2023-0014-19234 | EBSA | Definition of an Investment Advice Fiduciary EBSA-2023-0014 | Retirement Security: Definition of an Investment Advice Fiduciary | Rule | 2024-04-25T04:00:00Z | 2024 | 4 | 2024-04-25T04:00:00Z | 2024-04-25T14:13:47Z | 2024-08065 | 0 | 0 | 09000064864ee77d | ||
| EBSA-2023-0014-2351 | EBSA | Definition of an Investment Advice Fiduciary EBSA-2023-0014 | Hearing Transcript Day 1 | Supporting & Related Material | 2024-01-14T05:00:00Z | 2024 | 1 | 2024-01-15T14:44:30Z | 0 | 0 | 0900006486396fe0 | ||||
| EBSA-2023-0014-2352 | EBSA | Definition of an Investment Advice Fiduciary EBSA-2023-0014 | Hearing Transcript Day 2 | Supporting & Related Material | 2024-01-14T05:00:00Z | 2024 | 1 | 2024-01-15T14:44:38Z | 0 | 0 | 0900006486396fdf | ||||
| EBSA-2023-0014-0049 | EBSA | Definition of an Investment Advice Fiduciary EBSA-2023-0014 | Hearing Agenda Dec 12-13, 2023 | Supporting & Related Material | 2023-12-09T05:00:00Z | 2023 | 12 | 2023-12-09T19:05:51Z | 0 | 0 | 090000648631a634 | ||||
| EBSA-2023-0014-0003 | EBSA | Definition of an Investment Advice Fiduciary EBSA-2023-0014 | Hearings, Meetings, Proceedings etc.: Retirement Security Rule; Definition of an Investment Advice Fiduciary and Associated Prohibited Transaction Exemption Amendments | Proposed Rule | 2023-11-20T05:00:00Z | 2023 | 11 | 2023-11-20T05:00:00Z | 2023-11-30T04:59:59Z | 2024-01-09T02:01:26Z | 2023-25522 | 0 | 0 | 09000064862962d9 | |
| EBSA-2023-0014-0002 | EBSA | Definition of an Investment Advice Fiduciary EBSA-2023-0014 | Retirement Security NPRM 100 word summary 1210-AC02 | Supporting & Related Material | 2023-11-03T04:00:00Z | 2023 | 11 | 2023-11-03T13:06:24Z | 0 | 0 | 09000064861dee8a | ||||
| EBSA-2023-0014-0001 | EBSA | Definition of an Investment Advice Fiduciary EBSA-2023-0014 | Retirement Security Rule: Definition of an Investment Advice Fiduciary | Proposed Rule | 2023-11-03T04:00:00Z | 2023 | 11 | 2023-11-03T04:00:00Z | 2024-01-03T04:59:59Z | 2024-01-23T02:01:13Z | 2023-23779 | 0 | 0 | 09000064861dfb9e |
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;