documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "WHD_FRDOC_0001" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| WHD_FRDOC_0001-0133 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Recission of Final Rule: Improving Protections for Workers in Temporary Agricultural Employment in the United States | Proposed Rule | 2025-07-02T04:00:00Z | 2025 | 7 | 2025-07-02T20:38:53Z | 2025-12315 | 0 | 0 | 09000064b8e4d1e2 | |||
| WHD_FRDOC_0001-0132 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Rescission of Coordinated Enforcement Regulations | Proposed Rule | 2025-07-01T04:00:00Z | 2025 | 7 | 2025-07-02T18:40:52Z | 2025-11848 | 0 | 0 | 09000064b8e4ae56 | |||
| WHD_FRDOC_0001-0124 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Improving Protections for Workers in Temporary Agricultural Employment in the United States | Proposed Rule | 2023-09-15T04:00:00Z | 2023 | 9 | 2023-09-15T16:32:29Z | 2023-19852 | 0 | 0 | 0900006485fadb30 | |||
| WHD_FRDOC_0001-0105 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Rules of Practice and Procedure Concerning Filing and Service and Rules Concerning Filing and Service | Proposed Rule | 2021-03-17T04:00:00Z | 2021 | 3 | 2021-03-17T04:00:00Z | 2021-03-17T11:52:13Z | 2021-05405 | 0 | 0 | 0900006484a6e1fd | ||
| WHD_FRDOC_0001-0096 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Rules of Practice and Procedure Concerning Filing and Service and Amended Rules Concerning Filing and Service | Proposed Rule | 2021-01-11T05:00:00Z | 2021 | 1 | 2021-01-12T19:03:52Z | 2020-28056 | 0 | 0 | 09000064849ec2e1 | |||
| WHD_FRDOC_0001-0093 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Discretionary Review by the Secretary of Labor | Proposed Rule | 2021-01-04T05:00:00Z | 2021 | 1 | 2021-01-04T05:00:00Z | 2021-01-20T04:59:59Z | 2021-01-21T02:00:19Z | 2020-28952 | 0 | 0 | 09000064849db07c | |
| WHD_FRDOC_0001-0081 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Discretionary Review by theSecretary | Proposed Rule | 2020-03-06T05:00:00Z | 2020 | 3 | 2020-03-06T05:00:00Z | 2020-04-07T03:59:59Z | 2020-04-21T05:41:51Z | 2020-04018 | 0 | 0 | 09000064843f9acd | |
| WHD_FRDOC_0001-0070 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Temporary Agricultural Employment of H-2A Nonimmigrants in the United States | Proposed Rule | 2019-07-26T04:00:00Z | 2019 | 7 | 2019-07-26T04:00:00Z | 2019-09-25T03:59:59Z | 2019-09-26T01:02:23Z | 2019-15307 | 0 | 0 | 0900006483dbb1dc | |
| WHD_FRDOC_0001-0039 | WHD | Recently Posted WHD Rules and Notices. WHD_FRDOC_0001 | Housing Occupancy Certificates under the Migrant and Seasonal Agricultural Worker Protection Act: Extension of the Approval of Information Collection Requirements | Proposed Rule | 2014-03-20T04:00:00Z | 2014 | 3 | 2014-03-20T04:00:00Z | 2014-05-20T03:59:59Z | 2014-03-20T12:16:15Z | 2014-06107 | 0 | 0 | 0900006481671840 |
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;