documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "WHD-2019-0001" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- WHD 11
| 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-2019-0001-59359 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales and Computer Employees: Correction | Rule | 2020-06-08T04:00:00Z | 2020 | 6 | 2020-06-08T04:00:00Z | 2020-06-08T13:52:37Z | 2020-11979 | 0 | 0 | 09000064846d3bc3 | ||
| WHD-2019-0001-59357 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales and Computer Employees | Rule | 2019-09-27T04:00:00Z | 2019 | 9 | 2019-09-27T04:00:00Z | 2019-09-27T13:25:02Z | 2019-20353 | 0 | 0 | 0900006483fdd799 | ||
| WHD-2019-0001-59358 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | AppendixA_AppendixB_190927 | Supporting & Related Material | 2019-09-27T04:00:00Z | 2019 | 9 | 2019-09-30T12:08:59Z | 0 | 0 | 0900006483fddce5 | ||||
| WHD-2019-0001-1151 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | ex parte notice 541 NPRM Senate HELP 032919 | Supporting & Related Material | 2019-04-16T04:00:00Z | 2019 | 4 | 2019-04-16T13:59:46Z | 0 | 0 | 0900006483bacf2d | ||||
| WHD-2019-0001-1150 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | ex parte notice 541 NPRM SBA Advocacy Roundtable 04112019 | Supporting & Related Material | 2019-04-16T04:00:00Z | 2019 | 4 | 2019-04-16T13:33:51Z | 0 | 0 | 0900006483bace87 | ||||
| WHD-2019-0001-0034 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | ex parte notice 541 NPRM House Ed Labor Staff 20190318 | Supporting & Related Material | 2019-03-27T04:00:00Z | 2019 | 3 | 2019-03-27T19:05:43Z | 0 | 0 | 0900006483b3571f | ||||
| WHD-2019-0001-0005 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | 1949 weiss report cover to 33 | Supporting & Related Material | 2019-03-22T04:00:00Z | 2019 | 3 | 2019-03-22T12:09:20Z | 0 | 0 | 0900006483b05257 | ||||
| WHD-2019-0001-0004 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | 1958 kantor report | Supporting & Related Material | 2019-03-22T04:00:00Z | 2019 | 3 | 2019-03-22T12:09:11Z | 0 | 0 | 0900006483b05256 | ||||
| WHD-2019-0001-0003 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | 1940 Stein Report - complete | Supporting & Related Material | 2019-03-22T04:00:00Z | 2019 | 3 | 2019-03-22T12:09:03Z | 0 | 0 | 0900006483b04f6d | ||||
| WHD-2019-0001-0001 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales and Computer Employees | Proposed Rule | 2019-03-22T04:00:00Z | 2019 | 3 | 2019-03-22T04:00:00Z | 2019-05-22T03:59:59Z | 2019-11-06T02:03:16Z | 2019-04514 | 0 | 0 | 0900006483b173dc | |
| WHD-2019-0001-0002 | WHD | Defining and Delimiting the Exemptions for Executive, Administrative, Professional, Outside Sales, and Computer Employees WHD-2019-0001 | AppendixA_AppendixB_190322 | Supporting & Related Material | 2019-03-22T04:00:00Z | 2019 | 3 | 2019-03-22T12:08:55Z | 0 | 0 | 0900006483b04f37 |
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;