documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "ETA", document_type = "Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ETA-2015-0009-0252 | ETA | Apprenticeship Programs; Equal Employment Opportunity ETA-2015-0009 | Apprenticeship Programs; Equal Employment Opportunity | Rule | 2016-12-19T05:00:00Z | 2016 | 12 | 2016-12-19T05:00:00Z | 2016-12-19T16:18:21Z | 2016-29910 | 0 | 0 | 090000648242348b | ||
| ETA-2014-0005-0004 | ETA | Federal-State Unemployment Compensation Program; Implementing the Total Unemployment Rate as an Extended Benefits Indicator and Amending for Technical Corrections; Notice of Proposed Rulemaking ETA-2014-0005 | Federal-State Unemployment Compensation Program: Implementing the Total Unemployment Rate as an Extended Benefits Indicator and Technical Corrections | Rule | 2016-08-24T04:00:00Z | 2016 | 8 | 2016-08-24T04:00:00Z | 2016-08-24T15:34:38Z | 2016-18382 | 0 | 0 | 0900006482197a6a | ||
| ETA-2015-0002-0547 | ETA | Workforce Innovation and Opportunity Act – Joint Rule with U.S. Department of Education for Combined and Unified State Plans, Performance Accountability, and the One-Stop System Joint Provisions ETA-2015-0002 | Workforce Innovation and Opportunity Act: Joint Rule for Unified and Combined State Plans, Performance Accountability, and the One-Stop System Joint Provisions | Rule | 2016-08-19T04:00:00Z | 2016 | 8 | 2016-08-19T04:00:00Z | 2016-08-22T16:06:29Z | 2016-15977 | 0 | 0 | 0900006482184253 | ||
| ETA-2015-0001-0769 | ETA | Workforce Innovation and Opportunity Act ETA-2015-0001 | Workforce Innovation and Opportunity Act | Rule | 2016-08-19T04:00:00Z | 2016 | 8 | 2016-08-19T04:00:00Z | 2016-08-22T16:04:28Z | 2016-15975 | 0 | 0 | 0900006482184317 | ||
| ETA-2014-0004-0020 | ETA | Federal-State Unemployment Compensation Program; Middle Class Tax Relief and Job Creation Act of 2012 Provision on Establishing Appropriate Occupations for Drug Testing of Unemployment Compensation Applicants ETA-2014-0004 | Federal-State Unemployment Compensation Program: Middle Class Tax Relief and Job Creation Act of 2012 Provision on Establishing Appropriate Occupations for Drug Testing of Unemployment Compensation Applicants | Rule | 2016-08-01T04:00:00Z | 2016 | 8 | 2016-08-01T04:00:00Z | 2016-08-01T14:02:16Z | 2016-17738 | 0 | 0 | 0900006482145642 | ||
| ETA_FRDOC_0001-0204 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Federal Civil Penalties Inflation Adjustment Act Catch-Up Adjustments; Correction | Rule | 2016-07-26T04:00:00Z | 2016 | 7 | 2016-07-26T04:00:00Z | 2016-07-26T12:45:49Z | 2016-17552 | 0 | 0 | 0900006482122330 | ||
| ETA_FRDOC_0001-0203 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Federal Civil Penalties Inflation Adjustment Act Catch-Up Adjustments | Rule | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T15:28:28Z | 2016-15378 | 0 | 0 | 09000064820805d1 |
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;