documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EBSA-2014-0016" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, 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-2014-0016-0013 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | All Fiduciary - Conflict of Interest Proposed Exemptions | Notice | 2015-07-29T04:00:00Z | 2015 | 7 | 2015-07-29T04:00:00Z | 2015-09-25T03:59:59Z | 2016-04-16T20:37:58Z | 0 | 0 | 0900006481bad9d6 | ||
| EBSA-2014-0016-0007 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Fiduciary - Conflict of Interest Exemptions Hearing and Comment Period Extension Notice | Notice | 2015-07-06T04:00:00Z | 2015 | 7 | 2015-07-06T04:00:00Z | 2015-08-14T20:50:00Z | 0 | 0 | 0900006481b6c6c8 | |||
| EBSA-2014-0016-0005 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Proposed Amendment to Prohibited Transaction Exemptions, Exemptions from Prohibitions Respecting Certain Classes of Transactions Involving Employee Benefit Plans and Certain Broker-Dealers, Reporting Dealers and Banks | Proposed Rule | 2015-04-20T04:00:00Z | 2015 | 4 | 2015-04-20T04:00:00Z | 2015-09-25T03:59:59Z | 2016-04-16T20:34:14Z | 2015-08836 | 0 | 0 | 0900006481aaf2f1 | |
| EBSA-2014-0016-0003 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Best Interest Contract Exemptions | Proposed Rule | 2015-04-20T04:00:00Z | 2015 | 4 | 2015-04-20T04:00:00Z | 2015-09-25T03:59:59Z | 2016-04-16T20:34:13Z | 2015-08832 | 0 | 0 | 0900006481aaf276 | |
| EBSA-2014-0016-0002 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Proposed Amendments to Class Exemptions | Proposed Rule | 2015-04-20T04:00:00Z | 2015 | 4 | 2015-04-20T04:00:00Z | 2015-09-25T03:59:59Z | 2016-04-16T20:34:13Z | 2015-08839 | 0 | 0 | 0900006481aaf275 | |
| EBSA-2014-0016-0004 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Prohibited Transaction Exemptions; Proposed Amendments and Proposed Partial Revocations: Certain Transactions Involving Insurance Agents and Brokers, Pension Consultants, Insurance Companies, and Investment Company Principal Underwriters | Proposed Rule | 2015-04-20T04:00:00Z | 2015 | 4 | 2015-04-20T04:00:00Z | 2015-09-25T03:59:59Z | 2016-04-16T20:34:13Z | 2015-08837 | 0 | 0 | 0900006481aaf2b6 | |
| EBSA-2014-0016-0006 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Prohibited Transaction Exemptions; Proposed Amendments and Proposed Partial Revocations: Securities Transactions Involving Employee Benefit Plans and Broker-Dealers; Prohibitions Respecting Certain Classes of Transactions Involving Employee Benefits Plans and Certain Broker-Dealers, Reporting Dealers and Banks | Proposed Rule | 2015-04-20T04:00:00Z | 2015 | 4 | 2015-04-20T04:00:00Z | 2015-09-25T03:59:59Z | 2016-04-16T20:34:15Z | 2015-08838 | 0 | 0 | 0900006481aaf32c | |
| EBSA-2014-0016-0001 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Proposed Class Exemptions: Principal Transactions in Certain Debt Securities between Investment Advice Fiduciaries and Employee Benefit Plans and IRAs | Proposed Rule | 2015-04-20T04:00:00Z | 2015 | 4 | 2015-04-20T04:00:00Z | 2015-09-25T03:59:59Z | 2016-04-16T20:34:13Z | 2015-08833 | 0 | 0 | 0900006481aaf245 |
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;