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 = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2007-0045-0001 | EBSA | Annual Reporting and Disclosure EBSA-2007-0045 | Annual Reporting and Disclosure | Rule | 2007-11-16T05:00:00Z | 2007 | 11 | 2007-11-16T05:00:00Z | 2011-06-11T17:15:35Z | E7-21765 | 0 | 0 | 0900006480364ffe | ||
| EBSA-2007-0037-0001 | EBSA | Default Investment Alternatives Under Participant Directed Individual Account Plans EBSA-2007-0037 | Default Investment Alternatives Under Participant Directed Individual Account Plans | Rule | Final Rule | 2007-10-24T04:00:00Z | 2007 | 10 | 2007-10-24T04:00:00Z | 2011-06-11T17:15:33Z | 07-05147 | 0 | 0 | 090000648035591a | |
| EBSA-2007-0033-0001 | EBSA | Amendment to Interpretive Bulletin 95–1 EBSA-2007-0033 | Amendment to Interpretive Bulletin 95-1 | Rule | 2007-09-12T04:00:00Z | 2007 | 9 | 2007-09-12T04:00:00Z | 2007-11-14T04:59:59Z | 2011-06-11T17:15:31Z | E7-17744 | 0 | 0 | 0900006480284fa1 | |
| EBSA-2007-0030-0001 | EBSA | Amendments to Civil Penalties Under ERISA Section 502(c)(7) EBSA-2007-0030 | Amendments to Civil Penalties Under ERISA Section 502(c)(7) | Rule | 2007-08-10T04:00:00Z | 2007 | 8 | 2007-08-10T04:00:00Z | 2007-09-11T03:59:59Z | 2011-06-11T17:15:30Z | E7-15567 | 0 | 0 | 0900006480274634 | |
| EBSA-2007-0012-0001 | EBSA | Interim Final Rule Relating to Time and Order of Issuance of Domestic Relations Orders EBSA-2007-0012 | Interim Final Rule Relating to Time and Order of Issuance of Domestic Relations Orders | Rule | 2007-03-07T05:00:00Z | 2007 | 3 | 2007-03-07T05:00:00Z | 2007-05-08T03:59:59Z | 2011-06-11T17:15:26Z | E7-03820 | 0 | 0 | 090000648020e67e | |
| EBSA-2007-0011-0001 | EBSA | Mental Health Parity EBSA-2007-0011 | Mental Health Parity | Rule | 2007-02-27T05:00:00Z | 2007 | 2 | 2007-02-27T05:00:00Z | 2011-06-11T17:15:26Z | E7-03278 | 0 | 0 | 090000648020bf88 | ||
| EBSA-2007-0007-0001 | EBSA | Amendments to Safe Harbor for Distributions From Terminated Individual Account Plans and Termination of Abandoned Individual Account Plans To Require Inherited Individual Retirement Plans for Missing Nonspouse Beneficiaries EBSA-2007-0007 | Amendments to Safe Harbor for Distributions From Terminated Individual Account Plans and Termination of Abandoned Individual Account Plans To Require Inherited Individual Retirement Plans for Missing Nonspouse Beneficiaries | Rule | 2007-02-15T05:00:00Z | 2007 | 2 | 2007-02-15T05:00:00Z | 2007-04-03T03:59:59Z | 2011-06-11T17:15:25Z | 07-00597 | 0 | 0 | 09000064802075c3 | |
| EBSA-2007-0004-0001 | EBSA | Statutory Exemption for Cross-Trading of Securities EBSA-2007-0004 | Statutory Exemption for Cross-Trading of Securities | Rule | Interim Final Rule | 2007-02-12T05:00:00Z | 2007 | 2 | 2007-02-12T05:00:00Z | 2007-04-14T03:59:59Z | 2012-11-30T15:05:46Z | E7-02290 | 0 | 0 | 090000648020240b |
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;