documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "EBSA", document_type = "Proposed Rule" and posted_year = 2021 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-2021-0013-0001 | EBSA | Prudence and Loyalty in Selecting Plan Investments and Exercising Shareholder Rights EBSA-2021-0013 | Prudence and Loyalty in Selecting Plan Investments and Exercising Shareholder Rights | Proposed Rule | 2021-10-14T04:00:00Z | 2021 | 10 | 2021-10-14T04:00:00Z | 2021-12-14T04:59:59Z | 2022-04-02T01:00:16Z | 2021-22263 | 0 | 0 | 0900006484dc53f5 | |
| EBSA-2021-0007-0001 | EBSA | Requirements Related to Air Ambulance Services, Agent and Broker Disclosures, and Provider Enforcement EBSA-2021-0007 | Requirements Related to Air Ambulance Services, Agent and Broker Disclosures, and Provider Enforcement | Proposed Rule | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-17T13:14:55Z | 2021-19797 | 0 | 0 | 0900006484d83dec | |||
| EBSA-2021-0006-0001 | EBSA | PROPOSED IMPLEMENTATION OF SECURE ACT REVISIONS TO FORM 5500 EMPLOYEE BENEFIT PLAN REPORTS EBSA-2021-0006 | Annual Reporting and Disclosure | Proposed Rule | 2021-09-15T04:00:00Z | 2021 | 9 | 2021-09-20T13:26:45Z | 2021-19713 | 0 | 0 | 0900006484d80d4f | |||
| EBSA-2021-0006-0002 | EBSA | PROPOSED IMPLEMENTATION OF SECURE ACT REVISIONS TO FORM 5500 EMPLOYEE BENEFIT PLAN REPORTS EBSA-2021-0006 | Annual Information Return/Reports | Proposed Rule | 2021-09-15T04:00:00Z | 2021 | 9 | 2021-09-15T04:00:00Z | 2021-11-02T03:59:59Z | 2021-11-03T01:01:39Z | 2021-19714 | 0 | 0 | 0900006484d80f4e | |
| EBSA-2021-0005-0001 | EBSA | Request for Information Regarding Reporting on Pharmacy Benefits and Prescription Drug Costs EBSA-2021-0005 | Request for Information: Reporting on Pharmacy Benefits and Prescription Drug Costs | Proposed Rule | 2021-06-23T04:00:00Z | 2021 | 6 | 2021-06-23T04:00:00Z | 2021-07-24T03:59:59Z | 2021-07-27T01:00:32Z | 2021-13138 | 0 | 0 | 0900006484ba4403 |
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;