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 = "Proposed Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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_FRDOC_0001-0234 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Trade Adjustment Assistance for Workers | Proposed Rule | 2019-12-11T05:00:00Z | 2019 | 12 | 2019-12-11T05:00:00Z | 2019-12-12T04:59:59Z | 2019-12-12T02:02:12Z | 2019-26785 | 0 | 0 | 0900006484200c4d | |
| ETA-2019-0009-0001 | ETA | Trade Adjustment Assistance for Workers ETA-2019-0009 | Trade Adjustment Assistance for Workers | Proposed Rule | 2019-11-07T05:00:00Z | 2019 | 11 | 2019-11-07T05:00:00Z | 2019-12-12T04:59:59Z | 2020-01-07T02:03:23Z | 2019-20788 | 0 | 0 | 09000064841275f5 | |
| ETA-2019-0006-0001 | ETA | Procurement Roles and Responsibilities for Job Corps Contracts ETA-2019-0006 | Procurement Roles and Responsibilities for Job Corps Contracts | Proposed Rule | 2019-08-29T04:00:00Z | 2019 | 8 | 2019-08-29T04:00:00Z | 2019-10-01T03:59:59Z | 2019-09-26T01:02:23Z | 2019-18496 | 0 | 0 | 0900006483ed8168 | |
| ETA-2019-0008-0001 | ETA | Wage Methodology for the Temporary Non-Agricultural Employment H–2B Program ETA-2019-0008 | Wage Methodology for the Temporary Non-Agricultural Employment H-2B Program | Proposed Rule | 2019-07-29T04:00:00Z | 2019 | 7 | 2019-07-29T04:00:00Z | 2019-07-29T19:07:07Z | 2014-05589 | 0 | 0 | 0900006481665cd4 | ||
| ETA-2019-0007-0002 | ETA | Temporary Agricultural Employment of H-2A Nonimmigrants in the United States ETA-2019-0007 | Temporary Agricultural Employment of H-2A Nonimmigrants in the United States | Proposed Rule | 2019-07-26T04:00:00Z | 2019 | 7 | 2019-07-26T04:00:00Z | 2019-09-25T03:59:59Z | 2020-06-04T01:02:07Z | 2019-15307 | 0 | 0 | 0900006483dbb2fa | |
| ETA-2019-0005-0001 | ETA | Apprenticeship Programs, Labor Standards for Registration, Amendment of Regulations ETA-2019-0005 | Apprenticeship Programs, Labor Standards for Registration, Amendment of Regulations | Proposed Rule | 2019-06-25T04:00:00Z | 2019 | 6 | 2019-06-25T04:00:00Z | 2019-08-27T03:59:59Z | 2019-10-08T01:01:21Z | 2019-13076 | 0 | 0 | 0900006483d3ef29 | |
| ETA-2019-0004-0001 | ETA | Wagner-Peyser Act Staffing Flexibility, Notice of Proposed Rulemaking ETA-2019-0004 | Wagner-Peyser Act Staffing Flexibility | Proposed Rule | 2019-06-24T04:00:00Z | 2019 | 6 | 2019-06-24T04:00:00Z | 2019-07-25T03:59:59Z | 2019-07-26T01:02:25Z | 2019-12111 | 0 | 0 | 0900006483d38cbf |
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;