documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EBSA-2010-0050" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EBSA-2010-0050-3491 | EBSA | Definition of the Term Fiduciary; Conflict of Interest Rule - Retirement Investment Advice; Best Interest Contract Exemption; etc. EBSA-2010-0050 | Definition of Term Fiduciary; Conflict of Interest Rule-Retirement Investment | Proposed Rule | 2017-03-02T05:00:00Z | 2017 | 3 | 2017-03-02T05:00:00Z | 2017-04-18T03:59:59Z | 2018-02-24T02:01:28Z | 2017-04096 | 0 | 0 | 09000064824e621d | |
| EBSA-2010-0050-0205 | EBSA | Definition of the Term Fiduciary; Conflict of Interest Rule - Retirement Investment Advice; Best Interest Contract Exemption; etc. EBSA-2010-0050 | Definition of Fiduciary; Conflict of Interest Rule-Retirement Investment Advice and Related Proposed Prohibited Transaction Exemptions; Hearing and Comment Period Extension | Proposed Rule | 2015-06-18T04:00:00Z | 2015 | 6 | 2015-06-18T04:00:00Z | 2015-07-22T03:59:59Z | 2015-09-05T22:45:23Z | 2015-14921 | 0 | 0 | 0900006481b44c1d | |
| EBSA-2010-0050-0204 | EBSA | Definition of the Term Fiduciary; Conflict of Interest Rule - Retirement Investment Advice; Best Interest Contract Exemption; etc. EBSA-2010-0050 | Definition of the Term Fiduciary; Conflict of Interest Rule- Retirement Investment Advice | Proposed Rule | 2015-04-20T04:00:00Z | 2015 | 4 | 2015-04-20T04:00:00Z | 2015-09-25T03:59:59Z | 2015-11-17T02:31:13Z | 2015-08831 | 0 | 0 | 0900006481aaf326 | |
| EBSA-2010-0050-0001 | EBSA | Definition of the Term Fiduciary; Conflict of Interest Rule - Retirement Investment Advice; Best Interest Contract Exemption; etc. EBSA-2010-0050 | Definition of the Term Fiduciary | Proposed Rule | Notice of Proposed Rulemaking | 2010-10-22T04:00:00Z | 2010 | 10 | 2010-10-22T04:00:00Z | 2011-02-04T04:59:59Z | 2014-11-07T03:05:10Z | 2010-26236 | 0 | 0 | 0900006480b75324 |
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;