documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "WHD", document_type = "Proposed Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, comment_end_date, last_modified, 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-2008-0004-0001 | WHD | Protecting the Privacy of Workers: Labor Standards Provisions Applicable to Contracts Covering Federally Financed and Assisted Construction WHD-2008-0004 | Protecting the Privacy of Workers: Labor Standards Provisions Applicable to Contracts Covering Federally Financed and Assisted Construction | Proposed Rule | 2008-10-20T04:00:00Z | 2008 | 10 | 2008-10-20T04:00:00Z | 2008-11-20T04:59:59Z | 2011-06-11T18:06:55Z | E8-24762 | 0 | 0 | 090000648076a481 | |
| WHD-2008-0003-0011 | WHD | Updating Regulations Issued Under the Fair Labor Standards Act WHD-2008-0003 | Updating Regulations Issued Under the Fair Labor Standards Act Extension of Public Comment Period | Proposed Rule | 2008-08-22T04:00:00Z | 2008 | 8 | 2008-08-22T04:00:00Z | 2008-09-27T03:59:59Z | 2014-01-18T17:50:33Z | E8-19475 | 0 | 0 | 09000064806d2f97 | |
| WHD-2008-0003-0001 | WHD | Updating Regulations Issued Under the Fair Labor Standards Act WHD-2008-0003 | Updating Regulations Issued Under the Fair Labor Standards Act | Proposed Rule | 2008-07-28T04:00:00Z | 2008 | 7 | 2008-07-28T04:00:00Z | 2008-09-27T03:59:59Z | 2014-01-18T18:22:52Z | E8-16631 | 0 | 0 | 090000648069c282 | |
| WHD-2008-0002-0002 | WHD | To comment on Temporary Agricultural Employment of H-2A Aliens in the U. S., go to Docket ETA-2008-0001 WHD-2008-0002 | To Comment on Temporary Agricultural Employment of H-2A Aliens in the United States; Modernizing the Labor Certification Process and Enforcement; Extension of Comment Period; see Docket ETA-2008-0001 | Proposed Rule | 2008-03-27T04:00:00Z | 2008 | 3 | 2008-03-27T04:00:00Z | 2008-03-28T03:59:59Z | 2011-06-11T18:06:53Z | E8-06121 | 0 | 0 | 090000648040b19b | |
| WHD-2008-0002-0001 | WHD | To comment on Temporary Agricultural Employment of H-2A Aliens in the U. S., go to Docket ETA-2008-0001 WHD-2008-0002 | To comment on Temporary Agricultural Employment of H-2A Aliens in the U. S., go to docket ETA-2008-0001 | Proposed Rule | 2008-02-13T05:00:00Z | 2008 | 2 | 2008-02-13T05:00:00Z | 2008-02-14T04:59:59Z | 2011-06-11T18:06:53Z | E8-02525 | 0 | 0 | 09000064803adb75 | |
| WHD-2008-0001-0002 | WHD | To view comments on Family and Medical Leave Act Notice of Proposed Rulemaking 29 CFR Part 825, see Docket ESA-2008-0001 WHD-2008-0001 | The Family and Medical Leave Act of 1993 | Proposed Rule | 2008-02-11T05:00:00Z | 2008 | 2 | 2008-02-11T05:00:00Z | 2008-02-11T04:59:59Z | 2014-01-18T17:25:05Z | E8-02062 | 0 | 0 | 09000064803ac09d |
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;