documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "EBSA", document_type = "Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2020-0013-0002 | EBSA | contraception EBSA-2020-0013 | Religious Exemptions and Accommodations for Coverage of Certain Preventive Services Under the Affordable Care Act | Rule | 2018-11-15T05:00:00Z | 2018 | 11 | 2018-11-15T05:00:00Z | 2020-11-12T21:59:36Z | 2018-24512 | 0 | 0 | 09000064838d9801 | ||
| EBSA-2020-0013-0001 | EBSA | contraception EBSA-2020-0013 | Moral Exemptions and Accommodations for Coverage of Certain Preventive Services Under the Affordable Care Act | Rule | 2018-11-15T05:00:00Z | 2018 | 11 | 2018-11-15T05:00:00Z | 2020-11-12T21:59:05Z | 2018-24514 | 0 | 0 | 09000064838d958e | ||
| EBSA-2018-0002-0002 | EBSA | Short-Term, Limited-Duration Insurance EBSA-2018-0002 | Short-Term, Limited-Duration Insurance | Rule | 2018-08-03T04:00:00Z | 2018 | 8 | 2018-08-03T04:00:00Z | 2018-08-20T15:08:28Z | 2018-16568 | 0 | 0 | 09000064835c60f2 | ||
| EBSA-2018-0001-0725 | EBSA | Definition of Employer Under Section 3(5) of ERISA-Association Health Plans EBSA-2018-0001 | Definition of "Employer" under Section 3(5) of ERISA-Association Health Plans | Rule | 2018-06-21T04:00:00Z | 2018 | 6 | 2018-06-21T04:00:00Z | 2018-07-04T19:49:51Z | 2018-12992 | 0 | 0 | 0900006483439aac | ||
| EBSA-2015-0019-0002 | 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 under the Affordable Care Act | Rule | 2018-05-03T04:00:00Z | 2018 | 5 | 2018-05-03T04:00:00Z | 2018-06-19T19:56:57Z | 2018-09369 | 0 | 0 | 09000064832264c7 | ||
| EBSA-2017-0001-0003 | EBSA | Department of Labor Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2017 EBSA-2017-0001 | Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2018 | Rule | 2018-01-02T05:00:00Z | 2018 | 1 | 2018-01-02T05:00:00Z | 2018-04-16T12:44:47Z | 2017-28224 | 0 | 0 | 0900006482d8a21c |
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;