documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "ETA", document_type = "Notice" 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, fr_doc_num, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ETA-2015-0002-0548 | 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 | Agency Information Collection Activities; OMB Approvals; Workforce Innovation and Opportunity Act- Related Information Collection Requests | Notice | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-24T04:00:00Z | 2016-10-24T12:50:39Z | 2016–25585 | 0 | 0 | 0900006482343991 | ||
| ETA-2015-0001-0770 | ETA | Workforce Innovation and Opportunity Act ETA-2015-0001 | Agency Information Collection Activities; OMB Approvals; Workforce Innovation and Opportunity Act- Related Information Collection Requests | Notice | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-24T04:00:00Z | 2016-10-24T12:48:46Z | 2016–25585 | 0 | 0 | 090000648234398c | ||
| ETA-2014-0005-0005 | 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 | Agency Information Collection Activities; OMB Approval; Weekly Claims and Extended Benefits Data and Weekly Initial and Continued Weeks Claimed | Notice | 2016-10-20T04:00:00Z | 2016 | 10 | 2016-10-20T04:00:00Z | 2016-10-20T14:56:26Z | 2016–25400 | 0 | 0 | 09000064823221fc | ||
| ETA-2016-0002-0294 | ETA | Updated Methodology for Selecting a Job Corps Center for Closure and Center Selected for Closure: Comments Request ETA-2016-0002 | Final Notice of Job Corps Center for Closure | Notice | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T04:00:00Z | 2016-08-03T12:24:59Z | 2016–15603 | 0 | 0 | 0900006482080405 | ||
| ETA-2016-0002-0001 | ETA | Updated Methodology for Selecting a Job Corps Center for Closure and Center Selected for Closure: Comments Request ETA-2016-0002 | Updated Methodology for Selecting a Job Corps Center for Closure and Center Selected for Closure: Comments Request | Notice | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T05:00:00Z | 2016-04-09T03:59:59Z | 2016-04-09T04:00:50Z | 2016–04977 | 0 | 0 | 0900006481eb3c82 | |
| ETA-2016-0001-0001 | ETA | Comment Request for Information Collection for Post Enrollment Data Collection of Job Corps Participants, Revision with Changes ETA-2016-0001 | Comment Request for Information Collection for Post Enrollment Data Collection of Job Corps Participants, Revision With Changes | Notice | 2016-03-01T05:00:00Z | 2016 | 3 | 2016-03-01T05:00:00Z | 2016-05-03T03:59:59Z | 2016-05-03T04:00:45Z | 2016-04384 | 0 | 0 | 0900006481e94dae |
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;