documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "EBSA", document_type = "Proposed Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, withdrawn, 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-2012-0036-0001 | EBSA | Amendments to the Abandoned Plan Regulations EBSA-2012-0036 | Amendments to the Abandoned Plan Regulations | Proposed Rule | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T05:00:00Z | 2013-02-12T04:59:59Z | 2015-02-22T01:32:47Z | 2012-29500 | 0 | 0 | 09000064811886d6 | |
| EBSA-2014-0015-0001 | EBSA | Electronic Filing of Notices for Apprenticeship and Training Plans and Statements for Pension Plans for Certain Select Employees EBSA-2014-0015 | Standards Improvement Project-Phase IV | Proposed Rule | 2012-12-06T00:00:00Z | 2012 | 12 | 2015-04-02T16:58:09Z | 0 | 1 | 0900006481180ced | ||||
| EBSA-2012-0031-0001 | EBSA | Incentives for Nondiscriminatory Wellness Programs in Group Health Plans EBSA-2012-0031 | Incentives for Nondiscriminatory Wellness Programs in Group Health Plans | Proposed Rule | 2012-11-26T05:00:00Z | 2012 | 11 | 2012-11-26T05:00:00Z | 2013-01-26T04:59:59Z | 2013-04-10T02:05:21Z | 2012-28361 | 0 | 0 | 0900006481172f19 | |
| EBSA-2007-0047-0159 | EBSA | Reasonable Contract or Arrangement Under Section 408(b)(2)—Fee Disclosure; Proposed Rule EBSA-2007-0047 | Reasonable Contract or Arrangement; Fee Disclosure/Web Page | Proposed Rule | 2012-07-16T04:00:00Z | 2012 | 7 | 2012-07-16T04:00:00Z | 2012-08-16T03:59:59Z | 2014-11-12T23:10:08Z | 2012-17012 | 0 | 0 | 090000648109bdd5 | |
| EBSA-2010-0053-0002 | EBSA | Target Date Disclosure EBSA-2010-0053 | Target Date Disclosure - Proposed Rule - Reopening Comment Period | Proposed Rule | 2012-05-24T04:00:00Z | 2012 | 5 | 2012-05-24T04:00:00Z | 2012-07-10T03:59:59Z | 2014-11-07T03:08:00Z | 2012-12386 | 0 | 0 | 090000648101b4b2 | |
| EBSA-2010-0018-0005 | EBSA | Interim Final Rules for Group Health Plans and Health Insurance Issuers Relating to Coverage of Preventive Services Under the Patient Protection and Affordable Care Act EBSA-2010-0018 | Certain Preventive Services under Affordable Care Act | Proposed Rule | 2012-03-21T04:00:00Z | 2012 | 3 | 2012-03-21T04:00:00Z | 2012-03-24T19:28:29Z | 2012-06689 | 0 | 0 | 0900006480fdc8b9 | ||
| EBSA-2010-0018-0004 | EBSA | Interim Final Rules for Group Health Plans and Health Insurance Issuers Relating to Coverage of Preventive Services Under the Patient Protection and Affordable Care Act EBSA-2010-0018 | Certain Preventive Services Under the Affordable Care Act | Proposed Rule | 2012-03-21T04:00:00Z | 2012 | 3 | 2012-03-21T04:00:00Z | 2012-03-21T19:58:20Z | 0 | 0 | 0900006480fdccf8 |
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;