documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "DOL", document_type = "Rule" and posted_year = 2016 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-0961 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Implementation of the Nondiscrimination and Equal Opportunity Provisions of the Workforce Innovation and Opportunity Act | Rule | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2016-12-07T13:12:08Z | C1-2016-27737 | 0 | 0 | 09000064823e70d2 | ||
| DOL_FRDOC_0001-0960 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Implementation of the Nondiscrimination and Equal Opportunity Provisions of the Workforce Innovation and Opportunity Act | Rule | 2016-12-02T05:00:00Z | 2016 | 12 | 2016-12-02T05:00:00Z | 2016-12-02T13:11:34Z | 2016-27737 | 0 | 0 | 09000064823da073 | ||
| DOL_FRDOC_0001-0945 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Administrative Wage Garnishment Procedures | Rule | 2016-10-28T04:00:00Z | 2016 | 10 | 2016-10-28T04:00:00Z | 2016-10-28T11:50:12Z | 2016-26093 | 0 | 0 | 090000648235add8 | ||
| DOL_FRDOC_0001-0933 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Implementation of OMB Guidance on Nonprocurement Debarment and Suspension | Rule | 2016-09-30T04:00:00Z | 2016 | 9 | 2016-09-30T04:00:00Z | 2016-09-30T12:13:08Z | 2016-23430 | 0 | 0 | 090000648228445c | ||
| DOL_FRDOC_0001-0931 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Establishing Paid Sick Leave for Federal Contractors | Rule | 2016-09-30T04:00:00Z | 2016 | 9 | 2016-09-30T04:00:00Z | 2016-09-30T12:11:43Z | 2016-22964 | 0 | 0 | 09000064822843e4 | ||
| DOL_FRDOC_0001-0915 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Guidance: Fair Pay and Safe Workplaces | Rule | 2016-08-25T04:00:00Z | 2016 | 8 | 2016-08-25T04:00:00Z | 2016-08-25T11:45:30Z | 2016-19678 | 0 | 0 | 090000648219bcc6 | ||
| DOL-2016-0005-0001 | DOL | DOL Federal Civil Penalties Inflation Adjustment Act Catch-Up Adjustments DOL-2016-0005 | Federal Civil Penalties Inflation Adjustment Act Catch-Up Adjustments | Rule | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T04:00:00Z | 2016-08-16T03:59:59Z | 2016-08-17T01:01:36Z | 2016-15378 | 0 | 0 | 09000064820805d5 | |
| DOL-2016-0002-0001 | DOL | Department of Labor Implementation of OMB Guidance on Nonprocurement Debarment and Suspension DOL-2016-0002 | Implementation of OMB Guidance on Nonprocurement Debarment and Suspension | Rule | 2016-04-29T04:00:00Z | 2016 | 4 | 2016-04-29T04:00:00Z | 2016-06-01T03:59:59Z | 2016-04-29T13:22:17Z | 2016-10015 | 0 | 0 | 0900006481f98617 | |
| DOL_FRDOC_0001-0826 | DOL | Recently Posted DOL Rules and Notices. DOL_FRDOC_0001 | Fundamental Principles and Policymaking Criteria for Partnerships with Faith-Based and Other Neighborhood Organizations | Rule | 2016-04-04T04:00:00Z | 2016 | 4 | 2016-04-04T04:00:00Z | 2016-04-04T13:09:22Z | 2016-07339 | 0 | 0 | 0900006481f23b83 |
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;