documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EBSA-2022-0003" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, comment_end_date, 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-2022-0003-0051 | EBSA | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications EBSA-2022-0003 | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications | Rule | 2024-01-24T05:00:00Z | 2024 | 1 | 2024-01-24T16:52:04Z | 2024-00586 | 0 | 0 | 09000064863bdc63 | |||
| EBSA-2022-0003-0043 | EBSA | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications EBSA-2022-0003 | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications: Posting of Hearing Transcript Regarding Proposed Amendment to Exemption Procedures Regulation and Closing of Reopened Comment Period. | Proposed Rule | 2022-10-17T04:00:00Z | 2022 | 10 | 2022-10-17T04:00:00Z | 2022-10-29T03:59:59Z | 2022-11-01T01:00:44Z | 2022-22243 | 0 | 0 | 090000648540f47d | |
| EBSA-2022-0003-0032 | EBSA | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications EBSA-2022-0003 | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications: Hearing announcement and reopening of the comment period. | Proposed Rule | 2022-08-22T04:00:00Z | 2022 | 8 | 2022-08-22T04:00:00Z | 2022-10-29T03:59:59Z | 2022-11-06T12:02:32Z | 2022-17996 | 0 | 0 | 0900006485260fcb | |
| EBSA-2022-0003-0008 | EBSA | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications EBSA-2022-0003 | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications. Notice of proposed rulemaking; extension of comment period. | Proposed Rule | 2022-04-12T04:00:00Z | 2022 | 4 | 2022-04-12T04:00:00Z | 2022-06-01T03:59:59Z | 2022-06-02T01:01:17Z | 2022-07785 | 0 | 0 | 090000648500fda0 | |
| EBSA-2022-0003-0001 | EBSA | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications EBSA-2022-0003 | Procedures Governing the Filing and Processing of Prohibited Transaction Exemption Applications | Proposed Rule | 2022-03-15T04:00:00Z | 2022 | 3 | 2022-03-15T04:00:00Z | 2022-04-15T03:59:59Z | 2022-04-14T01:00:31Z | 2022-04963 | 0 | 0 | 0900006484fc7c3e |
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;