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 = "Proposed Rule" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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_FRDOC_0001-0284 | EBSA | Recently Posted EBSA Rules and Notices. EBSA_FRDOC_0001 | Coverage of Certain Preventive Services under the Affordable Care Act | Proposed Rule | 2024-12-30T05:00:00Z | 2024 | 12 | 2024-12-30T05:00:00Z | 2024-12-30T13:37:39Z | 2024-31239 | 0 | 0 | 09000064868951c4 | ||
| EBSA-2024-0011-0001 | EBSA | Enhancing Coverage of Preventive Services under the Affordable Care Act EBSA-2024-0011 | Enhancing Coverage of Preventive Services under the Affordable Care Act | Proposed Rule | 2024-10-28T04:00:00Z | 2024 | 10 | 2024-10-28T04:00:00Z | 2024-12-28T04:59:59Z | 2025-01-03T02:00:55Z | 2024-24675 | 0 | 0 | 09000064867e880a | |
| EBSA-2024-0001-0002 | EBSA | Request for Information—SECURE 2.0 Section 319—Effectiveness of Reporting and Disclosure Requirements EBSA-2024-0001 | Request for Information: SECURE 2.0 Section 319—Effectiveness of Reporting and Disclosure Requirements | Proposed Rule | 2024-04-03T04:00:00Z | 2024 | 4 | 2024-04-03T16:15:29Z | 2024-07018 | 0 | 0 | 09000064864b7d24 | |||
| EBSA-2024-0003-0001 | EBSA | Automatic Portability Transaction Regulations EBSA-2024-0003 | Automatic Portability Transaction Regulations | Proposed Rule | 2024-01-29T05:00:00Z | 2024 | 1 | 2024-01-29T05:00:00Z | 2024-03-30T03:59:59Z | 2024-03-30T01:00:44Z | 2024-01208 | 0 | 0 | 09000064863cda80 | |
| EBSA-2024-0001-0001 | EBSA | Request for Information—SECURE 2.0 Section 319—Effectiveness of Reporting and Disclosure Requirements EBSA-2024-0001 | Request for Information: SECURE 2.0—Effectiveness of Reporting and Disclosure Requirements | Proposed Rule | 2024-01-23T05:00:00Z | 2024 | 1 | 2024-01-23T05:00:00Z | 2024-05-23T03:59:59Z | 2024-05-25T01:00:34Z | 2024-01077 | 0 | 0 | 09000064863b8801 | |
| EBSA-2024-0002-0001 | EBSA | Federal Independent Dispute Resolution Operations; Reopening of Comment Period EBSA-2024-0002 | Federal Independent Dispute Resolution Operations | Proposed Rule | 2024-01-22T05:00:00Z | 2024 | 1 | 2024-01-25T16:38:54Z | 2024-01072 | 0 | 0 | 09000064863b30d5 |
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;