documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "EBSA", document_type = "Proposed Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, 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-0028-0002 | EBSA | Summary of Benefits and Coverage and Uniform Glossary EBSA-2014-0028 | Summary of Benefits and Coverage and Uniform Glossary | Proposed Rule | 2014-12-30T05:00:00Z | 2014 | 12 | 2014-12-30T05:00:00Z | 2015-03-03T04:59:59Z | 2015-03-11T02:01:22Z | 2014-30243 | 0 | 0 | 09000064819999b3 | |
| EBSA-2014-0028-0001 | EBSA | Summary of Benefits and Coverage and Uniform Glossary EBSA-2014-0028 | 2014-30243 | Proposed Rule | 2014-12-30T05:00:00Z | 2014 | 12 | 2015-01-02T20:44:32Z | 0 | 0 | 0900006481999421 | ||||
| EBSA-2013-0017-0066 | EBSA | Amendments to Excepted Benefits EBSA-2013-0017 | Amendments to Excepted Benefits | Proposed Rule | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T05:00:00Z | 2015-01-23T04:59:59Z | 2015-01-24T03:04:30Z | 2014-30010 | 0 | 0 | 090000648198ead5 | |
| EBSA-2014-0015-0002 | EBSA | Electronic Filing of Notices for Apprenticeship and Training Plans and Statements for Pension Plans for Certain Select Employees EBSA-2014-0015 | Electronic Filing of Notices for Apprenticeship and Training Plans and Statements for Pension Plans for Certain Select Employees | Proposed Rule | 2014-09-30T04:00:00Z | 2014 | 9 | 2014-09-30T04:00:00Z | 2014-12-30T04:59:59Z | 2015-01-16T03:03:03Z | 2014-22855 | 0 | 0 | 090000648189c0b0 | |
| EBSA-2014-0013-0001 | EBSA | Coverage of Certain Preventive Services Under the Affordable Care Act EBSA-2014-0013 | Coverage of Certain Preventive Services under the Affordable Care Act | Proposed Rule | 2014-08-27T04:00:00Z | 2014 | 8 | 2014-08-27T13:51:55Z | 2014-20254 | 0 | 0 | 0900006481847b4b | |||
| EBSA-2014-0012-0001 | EBSA | Standards for Brokerage Windows in Participant-Directed Individual Account Plans EBSA-2014-0012 | Standards for Brokerage Windows in Participant-Directed Individual Account Plans | Proposed Rule | 2014-08-21T04:00:00Z | 2014 | 8 | 2014-08-21T04:00:00Z | 2014-11-20T04:59:59Z | 2014-12-02T03:11:15Z | 2014-19832 | 0 | 0 | 0900006481838006 | |
| EBSA-2010-0053-0003 | EBSA | Target Date Disclosure EBSA-2010-0053 | Target Date Disclosure | Proposed Rule | 2014-06-03T04:00:00Z | 2014 | 6 | 2014-06-03T04:00:00Z | 2014-07-04T03:59:59Z | 2014-07-15T01:04:36Z | 2014-12667 | 0 | 0 | 0900006481725db5 | |
| EBSA-2014-0008-0001 | EBSA | Health Care Continuation Coverage EBSA-2014-0008 | Health Care Continuation Coverage | Proposed Rule | 2014-05-07T04:00:00Z | 2014 | 5 | 2014-05-07T04:00:00Z | 2014-07-08T03:59:59Z | 2014-07-08T01:02:11Z | 2014-10416 | 0 | 0 | 09000064816e6f93 | |
| EBSA-2014-0002-0001 | EBSA | Amendment Relating to Reasonable Contract or Arrangement Under Section 408(b)(2)—Fee Disclosure EBSA-2014-0002 | Reasonable Contract or Arrangement Fee Disclosure | Proposed Rule | 2014-03-12T04:00:00Z | 2014 | 3 | 2014-03-12T04:00:00Z | 2014-06-11T03:59:59Z | 2014-07-15T01:02:26Z | 2014-04868 | 0 | 0 | 090000648166103e | |
| EBSA-2013-0006-0026 | EBSA | Ninety-Day Waiting Period Limitation and Technical Amendments to Certain Health Coverage Requirements Under the Affordable Care Act EBSA-2013-0006 | Ninety-Day Waiting Period Limitation | Proposed Rule | 2014-02-24T05:00:00Z | 2014 | 2 | 2014-02-24T05:00:00Z | 2014-04-26T03:59:59Z | 2014-05-01T01:01:43Z | 2014-03811 | 0 | 0 | 09000064815a695d |
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;