documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "ETA_FRDOC_0001" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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_FRDOC_0001-0278 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Exercise of Time-Limited Authority to Increase the Numerical Limitation for FY 2023 for the H-2B Temporary Nonagricultural Worker Program and Portability Flexibility for H-2B Workers Seeking to Change Employers; Correction | Rule | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T05:00:00Z | 2022-12-21T12:44:06Z | 2022-27804 | 0 | 0 | 09000064855488d3 | ||
| ETA_FRDOC_0001-0276 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Temporary Agricultural Employment of H-2A Nonimmigrants in the United States | Rule | 2022-10-12T04:00:00Z | 2022 | 10 | 2022-10-12T04:00:00Z | 2022-10-12T11:41:17Z | 2022-20506 | 0 | 0 | 09000064853f6107 | ||
| ETA_FRDOC_0001-0273 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Exercise of Time-Limited Authority to Increase the Numerical Limitation for Second Half of Fiscal Year 2022: H-2B Temporary Nonagricultural Worker Program and Portability Flexibility for H-2B Workers Seeking to Change Employers; Correction | Rule | 2022-06-06T04:00:00Z | 2022 | 6 | 2022-06-06T04:00:00Z | 2022-06-06T12:23:03Z | 2022-11989 | 0 | 0 | 090000648514124b | ||
| ETA_FRDOC_0001-0272 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Exercise of Time-Limited Authority to Increase the Numerical Limitation for Second Half of FY 2022: H-2B Temporary Nonagricultural Worker Program and Portability Flexibility for H-2B Workers Seeking to Change Employers; Correction | Rule | 2022-05-23T04:00:00Z | 2022 | 5 | 2022-05-23T04:00:00Z | 2022-05-23T12:55:14Z | 2022-11132 | 0 | 0 | 09000064850c461f | ||
| ETA_FRDOC_0001-0269 | 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 | Rule | 2022-05-06T04:00:00Z | 2022 | 5 | 2022-05-06T04:00:00Z | 2022-05-06T12:20:54Z | 2022-09491 | 0 | 0 | 09000064850560ac | ||
| 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_FRDOC_0001-0265 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Exercise of Time-Limited Authority To Increase the Fiscal Year 2022 Numerical Limitation for the H-2B Temporary Nonagricultural Worker Program and Portability Flexibility for H-2B Workers Seeking To Change Employers | Rule | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-03T05:00:00Z | 2022-02-03T12:51:27Z | C1-2022-01 | 0 | 0 | 0900006484f4ffe5 | ||
| ETA_FRDOC_0001-0264 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Exercise of Time-Limited Authority to Increase the Fiscal Year 2022 Numerical Limitation for the H-2B Temporary Nonagricultural Worker Program and Portability Flexibility for H-2B Workers Seeking to Change Employers | Rule | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-03T05:00:00Z | 2022-02-03T12:51:03Z | C1-2022-01866 | 0 | 0 | 0900006484f4ff33 | ||
| ETA_FRDOC_0001-0262 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Department of Labor Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2022 | Rule | 2022-01-14T05:00:00Z | 2022 | 1 | 2022-01-14T05:00:00Z | 2022-01-14T12:48:48Z | 2022-00144 | 0 | 0 | 0900006484f205b7 |
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;