documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "WHD-2023-0001" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| WHD-2023-0001-1785 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2023-0001 | Response to Requests to Extend the Comment Period | Supporting & Related Material | 2023-10-10T04:00:00Z | 2023 | 10 | 2023-10-10T21:52:19Z | 0 | 0 | 090000648609db00 | ||||
| WHD-2023-0001-0099 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2023-0001 | 100 Word summary | Supporting & Related Material | 2023-09-14T04:00:00Z | 2023 | 9 | 2023-09-14T18:32:30Z | 0 | 0 | 0900006485fa717d | ||||
| WHD-2023-0001-0006 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2023-0001 | AppendixA_AppendixB_09-08-2023- | Supporting & Related Material | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T12:40:36Z | 0 | 0 | 0900006485f5a869 | ||||
| WHD-2023-0001-0001 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2023-0001 | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees | Proposed Rule | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T04:00:00Z | 2023-11-08T04:59:59Z | 2023-11-10T02:01:03Z | 2023-19032 | 0 | 0 | 0900006485f5bd57 | |
| WHD-2023-0001-0005 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2023-0001 | Exemptions from the Fair Labor Standards Act: Outside Salesworkers and Executive, Administrative, and Professional Employees (1981 min wage study report) | Supporting & Related Material | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T12:40:18Z | 0 | 0 | 0900006485f54525 | ||||
| WHD-2023-0001-0002 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2023-0001 | Report and Recommendations on Proposed Revision of Regulations, Part 541 under the Fair Labor Standards Act (March 1958)(Kantor Report). | Supporting & Related Material | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T13:04:13Z | 0 | 0 | 0900006485f50269 | ||||
| WHD-2023-0001-0003 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2023-0001 | Executive, Administrative, Professional, Outside Salesman Redefined (October 1940)(Stein Report) | Supporting & Related Material | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T12:39:29Z | 0 | 0 | 0900006485f5026c | ||||
| WHD-2023-0001-0004 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2023-0001 | Report and Recommendations on Proposed Revisions of Regulations, Part 541, Defining the Terms "Executive" "Administrative" "Professional" "Local Retailing Capacity" "Outside Salesman" (June 1949) (Weiss Report) | Supporting & Related Material | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T12:39:43Z | 0 | 0 | 0900006485f5026d |
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;