documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "DOL", document_type = "Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOL_FRDOC_0001-2601 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Nondisplacement of Qualified Workers under Service Contracts; Rescission of Regulations | Rule | 2025-12-22T05:00:00Z | 2025 | 12 | 2025-12-22T05:00:00Z | 2025-12-22T17:45:32Z | 2025-23626 | 0 | 0 | 09000064b90fd3fa | ||
| DOL_FRDOC_0001-2554 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Rescission of Nondiscrimination and Equal-Opportunity Provisions of the Workforce Investment Act | Rule | 2025-08-28T04:00:00Z | 2025 | 8 | 2025-08-28T04:00:00Z | 2025-08-28T16:23:18Z | 2025-16492 | 0 | 0 | 09000064b8f1cffe | ||
| DOL_FRDOC_0001-2551 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Obsolete Grant and Contract Regulations | Rule | 2025-08-18T04:00:00Z | 2025 | 8 | 2025-08-18T04:00:00Z | 2025-08-18T16:20:23Z | 2025-15652 | 0 | 0 | 09000064b8f044ba | ||
| DOL_FRDOC_0001-2525 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Rescinding Unnecessary Notice and Comment Procedures | Rule | 2025-07-01T04:00:00Z | 2025 | 7 | 2025-07-01T04:00:00Z | 2025-07-01T16:25:11Z | 2025-12234 | 0 | 0 | 09000064b8e4af06 | ||
| DOL-2025-0004-0001 | DOL | Rescission of Nondiscrimination and Equal-Opportunity Provisions of the Workforce Investment Act DOL-2025-0004 | Rescission of Nondiscrimination and Equal-Opportunity Provisions of the Workforce Investment Act | Rule | 2025-07-01T04:00:00Z | 2025 | 7 | 2025-07-01T04:00:00Z | 2025-08-01T03:59:59Z | 2025-07-30T09:00:28Z | 2025-11846 | 0 | 0 | 09000064b8e4affe | |
| DOL_FRDOC_0001-2432 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2025 | Rule | 2025-01-10T05:00:00Z | 2025 | 1 | 2025-01-10T05:00:00Z | 2025-01-10T13:04:25Z | 2024-31602 | 0 | 0 | 09000064868ade30 |
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;