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 = "Proposed Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ETA-2022-0005-0001 | ETA | Workforce Innovation and Opportunity Act Title I Non-Core Programs Effectiveness in Serving Employers Performance Indicator. ETA-2022-0005 | Workforce Innovation and Opportunity Act Non-Core Programs Effectiveness in Serving Employers Performance Indicator | Proposed Rule | 2022-09-14T04:00:00Z | 2022 | 9 | 2022-09-14T04:00:00Z | 2022-11-15T04:59:59Z | 2022-11-18T02:01:05Z | 2022-19003 | 0 | 0 | 0900006485300dba | |
| ETA-2022-0006-0001 | ETA | Joint Rule for Workforce Innovation and Opportunity Act Effectiveness in Serving Employers Performance Indicator ETA-2022-0006 | Workforce Innovation and Opportunity Act Effectiveness in Serving Employers Performance Indicator | Proposed Rule | 2022-09-14T04:00:00Z | 2022 | 9 | 2022-09-14T04:00:00Z | 2022-11-15T04:59:59Z | 2022-11-18T02:01:34Z | 2022-19002 | 0 | 0 | 0900006485300de3 | |
| ETA_FRDOC_0001-0270 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Senior Community Service Employment Program: Conforming Changes to the Supporting Older Americans Act, Updated Guidance on Priority of Service, Durational Limits, and State Plan Submissions; Withdrawal | Proposed Rule | 2022-05-06T04:00:00Z | 2022 | 5 | 2022-05-06T04:00:00Z | 2022-05-06T12:22:46Z | 2022-09492 | 0 | 0 | 09000064850565e6 | ||
| ETA-2022-0003-0001 | ETA | Wagner-Peyser Act Staffing ETA-2022-0003 | Wagner-Peyser Act Staffing | Proposed Rule | 2022-04-20T04:00:00Z | 2022 | 4 | 2022-04-20T04:00:00Z | 2022-06-22T03:59:59Z | 2022-08-03T01:00:41Z | 2022-07628 | 0 | 0 | 09000064850263da | |
| ETA-2022-0002-0002 | ETA | SCSEP ETA-2022-0002 | Senior Community Service Employment Program: Conforming Changes to the Supporting Older Americans Act, Updated Guidance on Priority of Service, Durational Limits, and State Plan Submissions | Proposed Rule | 2022-02-14T05:00:00Z | 2022 | 2 | 2022-02-14T05:00:00Z | 2022-03-17T03:59:59Z | 2022-03-15T01:00:47Z | 2022-02681 | 0 | 0 | 0900006484f75222 |
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;