documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "ETA_FRDOC_0001" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0243 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Adverse Effect Wage Rate Methodology for the Temporary Employment of H-2A Nonimmigrants in Non-Range Occupations | Rule | 2020-11-05T05:00:00Z | 2020 | 11 | 2020-11-05T05:00:00Z | 2020-11-05T13:06:51Z | 2020-24544 | 0 | 0 | 090000648494c8e7 | ||
| ETA_FRDOC_0001-0242 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Welfare-to-Work Grants | Rule | 2020-10-16T04:00:00Z | 2020 | 10 | 2020-10-16T04:00:00Z | 2020-10-16T11:43:23Z | 2020-21308 | 0 | 0 | 0900006484912d69 | ||
| ETA_FRDOC_0001-0240 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Trade Adjustment Assistance for Workers | Rule | 2020-08-21T04:00:00Z | 2020 | 8 | 2020-08-21T04:00:00Z | 2020-08-21T11:52:14Z | 2020-13802 | 0 | 0 | 0900006484816765 | ||
| ETA_FRDOC_0001-0239 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Amended Rules Concerning Discretionary Review by the Secretary | Rule | 2020-05-20T04:00:00Z | 2020 | 5 | 2020-05-20T04:00:00Z | 2020-05-20T11:57:31Z | 2020-10909 | 0 | 0 | 090000648464d847 | ||
| ETA_FRDOC_0001-0236 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Department of Labor Federal Civil Penalties Inflation Adjustment Act Annual Adjustments for 2020 | Rule | 2020-01-15T05:00:00Z | 2020 | 1 | 2020-01-15T05:00:00Z | 2020-01-15T12:50:46Z | 2020-00486 | 0 | 0 | 09000064842a7fa7 | ||
| ETA_FRDOC_0001-0235 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Wagner-Peyser Act Staffing Flexibility | Rule | 2020-01-06T05:00:00Z | 2020 | 1 | 2020-01-06T05:00:00Z | 2020-01-06T13:24:30Z | 2019-27260 | 0 | 0 | 090000648426ecd8 |
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;