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 = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, fr_doc_num, 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-2021-0006-0117 | EBSA | PROPOSED IMPLEMENTATION OF SECURE ACT REVISIONS TO FORM 5500 EMPLOYEE BENEFIT PLAN REPORTS EBSA-2021-0006 | Annual Information Return/Reports | Rule | 2021-12-29T05:00:00Z | 2021 | 12 | 2021-12-29T05:00:00Z | 2021-12-29T13:23:36Z | 2021-27764 | 0 | 0 | 0900006484effb9c | ||
| EBSA-2021-0017-0001 | EBSA | Prescription Drug and Health Care Spending EBSA-2021-0017 | Prescription Drug and Health Care Spending | Rule | 2021-11-23T05:00:00Z | 2021 | 11 | 2021-11-23T16:58:24Z | 2021-25183 | 0 | 0 | 0900006484e75554 | |||
| EBSA-2021-0012-0001 | EBSA | Requirements Related to Surprise Billing; Part II EBSA-2021-0012 | Requirements Related to Surprise Billing; Part II | Rule | 2021-10-08T04:00:00Z | 2021 | 10 | 2021-10-12T14:58:07Z | 2021-21441 | 0 | 0 | 0900006484dbfb64 | |||
| EBSA-2021-0012-0002 | EBSA | Requirements Related to Surprise Billing; Part II EBSA-2021-0012 | Requirements Related to Surprise Billing; Part II | Rule | 2021-10-07T04:00:00Z | 2021 | 10 | 2021-10-12T14:58:18Z | 2021-21441 | 0 | 0 | 0900006484dbd9f3 | |||
| EBSA-2019-0002-0001 | EBSA | Department of Labor Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2019 EBSA-2019-0002 | Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2019 | Rule | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-09-17T14:28:44Z | 2019-00089 | 0 | 0 | 0900006483a028d1 | ||
| EBSA-2021-0008-0002 | EBSA | Requirements Related to Surprise Billing; Part I EBSA-2021-0008 | Requirements Related to Surprise Billing; PartI | Rule | 2021-07-13T04:00:00Z | 2021 | 7 | 2021-09-17T14:06:54Z | 2021-14379 | 0 | 0 | 0900006484be7f51 |
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;