documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "ETA", document_type = "Notice" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0008-0001 | ETA | Comment Request for Information Collection for the Workforce Performance Accountability, Information, and Reporting System (OMB Control No. 1205-3NEW), new collection ETA-2015-0008 | Comment Request for Information Collection for the Workforce Performance Accountability, Information, and Reporting System (OMB Control No. 1205–3NEW), New Collection | Notice | 2015-09-01T04:00:00Z | 2015 | 9 | 2015-09-01T04:00:00Z | 2015-11-03T04:59:59Z | 2015-11-04T02:30:43Z | 2015–21607 | 0 | 0 | 0900006481c48dd7 | |
| ETA-2015-0006-0001 | ETA | Required Elements for the Submission of the Unified or Combined State Plan and Plan Modifications Under the Workforce Innovation and Opportunity Act ETA-2015-0006 | FRN - Required Elements for Submission of the Unified or Combined State Plan and Plan Modifications Under the Workforce Innovation and Opportunity Act | Notice | 2015-08-06T04:00:00Z | 2015 | 8 | 2015-08-06T04:00:00Z | 2015-10-06T03:59:59Z | 2015-10-07T15:35:18Z | 2015-19286 | 0 | 0 | 0900006481bc78c0 | |
| ETA-2015-0007-0001 | ETA | Comment Request for Information Collection for the WIOA Performance Management, Information, and Reporting System (OMB Control No. 1205-0NEW), new collection ETA-2015-0007 | Comment Request for Information Collection for the WIOA Performance Management, Information, and Reporting System (OMB Control No. 1205–0NEW), New Collection | Notice | 2015-07-22T04:00:00Z | 2015 | 7 | 2015-07-22T04:00:00Z | 2015-09-22T03:59:59Z | 2015-09-29T01:30:29Z | 2015–17888 | 0 | 0 | 0900006481b97ae2 | |
| ETA-2014-0005-0003 | 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; Comment Request; Weekly Claims and Extended Benefits Data and Weekly Initial and Continued Weeks Claimed | Notice | 2015-07-17T04:00:00Z | 2015 | 7 | 2015-07-07T04:00:00Z | 2015-09-09T03:59:59Z | 2015-09-03T17:29:06Z | 2015–16590 | 0 | 0 | 0900006481b8f256 | |
| ETA-2014-0003-0014 | ETA | Intent To Issue Declaratory Order ETA-2014-0003 | Intent to Issue Declaratory Order; Request for Comment; Extension of Comment Period | Notice | 2015-01-16T05:00:00Z | 2015 | 1 | 2015-01-16T21:34:00Z | 2015-00580 | 0 | 0 | 09000064819cdf12 |
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;