documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "EBSA", document_type = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EBSA-2015-0018-0002 | EBSA | Savings Arrangements Established by States for Non-Governmental Employees EBSA-2015-0018 | Interpretive Bulletin Relating to State Savings Programs that Sponsor or Facilitate Plans Covered by the Employee Retirement Income Security Act | Rule | 2015-11-18T05:00:00Z | 2015 | 11 | 2015-11-18T05:00:00Z | 2015-11-19T16:54:57Z | 2015-29427 | 0 | 0 | 0900006481d549ca | ||
| EBSA-2015-0019-0001 | EBSA | Final Rules for Grandfathered Plans, Preexisting Condition Exclusions, Lifetime and Annual Limits, Rescissions, Dependent Coverage, Appeals, and Patient Protections Under the Affordable Care Act; Final Rules EBSA-2015-0019 | Grandfathered Plans, Preexisting Condition Exclusions, Lifetime and Annual Limits, Rescissions, Dependent Coverage, Appeals, and Patient Protections | Rule | 2015-11-18T05:00:00Z | 2015 | 11 | 2015-11-18T05:00:00Z | 2015-12-15T22:06:34Z | 2015-29294 | 0 | 0 | 0900006481d548c6 | ||
| EBSA-2015-0016-0001 | EBSA | Interpretive Bulletin Relating to the Fiduciary Standard under ERISA in Considering Economically Targeted Investments EBSA-2015-0016 | Interpretive Bulletin Relating to the Fiduciary Standard under ERISA in Considering Economically Targeted Investments | Rule | 2015-10-26T04:00:00Z | 2015 | 10 | 2015-10-26T04:00:00Z | 2015-11-02T17:05:51Z | 2015-27146 | 0 | 0 | 0900006481cecb54 | ||
| EBSA-2014-0013-13749 | EBSA | Coverage of Certain Preventive Services Under the Affordable Care Act EBSA-2014-0013 | Coverage of Certain Preventive Services Under the Affordable Care Act | Rule | 2015-07-14T04:00:00Z | 2015 | 7 | 2015-07-14T04:00:00Z | 2015-12-15T21:56:28Z | 2015-17076 | 0 | 0 | 0900006481b82ff1 | ||
| EBSA-2014-0028-0105 | EBSA | Summary of Benefits and Coverage and Uniform Glossary EBSA-2014-0028 | Summary of Benefits and Coverage and Uniform Glossary | Rule | 2015-06-16T04:00:00Z | 2015 | 6 | 2015-06-16T04:00:00Z | 2015-12-15T21:53:41Z | 2015-14559 | 0 | 0 | 0900006481b3c0bd | ||
| EBSA-2015-0001-0001 | EBSA | Fiduciary Requirements for Disclosure in Participant-Directed Individual Account Plans—Timing of Annual Disclosure EBSA-2015-0001 | Fiduciary Requirements for Disclosure in Participant-Directed Individual Account Plans-Timing of Annual Disclosure | Rule | 2015-03-19T04:00:00Z | 2015 | 3 | 2015-03-19T04:00:00Z | 2015-04-21T03:59:59Z | 2015-04-21T02:01:22Z | 2015-06211 | 0 | 0 | 0900006481a51a2e | |
| EBSA-2013-0017-0094 | EBSA | Amendments to Excepted Benefits EBSA-2013-0017 | Amendments to Excepted Benefits | Rule | 2015-03-18T04:00:00Z | 2015 | 3 | 2015-03-18T04:00:00Z | 2015-12-15T20:29:29Z | 2015-06066 | 0 | 0 | 0900006481a4eb18 | ||
| EBSA-2010-0052-0013 | EBSA | Annual Funding Notice for Defined Benefit Plans EBSA-2010-0052 | Annual Funding for Defined Benefit Plans | Rule | 2015-02-02T05:00:00Z | 2015 | 2 | 2015-02-02T05:00:00Z | 2015-02-05T16:56:50Z | 2015-01884 | 0 | 0 | 09000064819ec6b5 |
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;