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 document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: comment_start_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-4037 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Prohibited Transaction Exemptions: Best Interest Contract Exemption; Correction | Rule | 2016-07-11T04:00:00Z | 2016 | 7 | 2016-07-11T04:00:00Z | 2016-07-15T20:54:22Z | 2016-16355 | 0 | 0 | 090000648209bdc0 | ||
| EBSA-2014-0016-4038 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Prohibited Transaction Exemptions: Class Exemption for Principal Transactionsin Certain Assets between Investment Advice Fiduciaries and Employee Benefit Plans and IRAs; Correction | Rule | 2016-07-11T04:00:00Z | 2016 | 7 | 2016-07-11T04:00:00Z | 2016-07-15T20:57:55Z | 2016-16354 | 0 | 0 | 090000648209bdfc | ||
| EBSA-2014-0016-4036 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Amendment to and Partial Revocation of Prohibited Transaction Exemption 84-24 for Certain Transactions Involving Insurance Agents and Brokers, Pension Consultants, Insurance Companies, and Investment Company Principal Underwriters | Rule | 2016-04-08T04:00:00Z | 2016 | 4 | 2016-04-08T04:00:00Z | 2016-04-11T19:51:15Z | 2016-07928 | 0 | 0 | 0900006481f57015 | ||
| EBSA-2014-0016-4031 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Class Exemption for Principal Transactions in Certain Assets between Investment Advice Fiduciaries and Employee Benefit Plans and IRAs | Rule | 2016-04-08T04:00:00Z | 2016 | 4 | 2016-04-08T04:00:00Z | 2016-04-11T19:38:24Z | 2016-07926 | 0 | 0 | 0900006481f56f2c | ||
| EBSA-2014-0016-4032 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Amendments to Class Exemptions 75-1, 77-4, 80-83 and 83-1 | Rule | 2016-04-08T04:00:00Z | 2016 | 4 | 2016-04-08T04:00:00Z | 2016-04-11T19:41:11Z | 2016-07930 | 0 | 0 | 0900006481f56e4f | ||
| EBSA-2014-0016-4033 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Best Interest Contract Exemption | Rule | 2016-04-08T04:00:00Z | 2016 | 4 | 2016-04-08T04:00:00Z | 2016-04-11T19:42:58Z | 2016-07925 | 0 | 0 | 0900006481f56f70 | ||
| EBSA-2014-0016-4035 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Amendment to Prohibited Transaction Exemption 75-1, Part V, Exemptions From Prohibitions Respecting Certain Classes of Transactions Involving Employee Benefit Plans and Certain Broker-Dealers, Reporting Dealers and Banks | Rule | 2016-04-08T04:00:00Z | 2016 | 4 | 2016-04-08T04:00:00Z | 2016-04-11T19:47:26Z | 2016-07927 | 0 | 0 | 0900006481f56f28 | ||
| EBSA-2014-0016-4034 | EBSA | Fiduciary - Conflict of Interest Exemptions EBSA-2014-0016 | Amendments to and Partial Revocation of Prohibited Transaction Exemption 86-128 for Securities Transactions Involving Employee Benefit Plans and Broker-Dealers; Amendment to and Partial Revocation of PTE 75-1, Exemptions From Prohibitions Respecting Certain Classes of Transactions Involving Employee Benefits Plans and Certain Broker-Dealers, Reporting Dealers and Banks | Rule | 2016-04-08T04:00:00Z | 2016 | 4 | 2016-04-08T04:00:00Z | 2016-04-11T19:45:06Z | 2016-07929 | 0 | 0 | 0900006481f56e01 |
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;