documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "ETA_FRDOC_0001" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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_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-0252 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Rules of Practice and Procedure Concerning Filing and Service and Rules Concerning Filing and Service | Proposed Rule | 2021-03-17T04:00:00Z | 2021 | 3 | 2021-03-17T04:00:00Z | 2021-03-17T11:53:19Z | 2021-05405 | 0 | 0 | 0900006484a6e295 | ||
| ETA_FRDOC_0001-0247 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Rules of Practice and Procedure Concerning Filing and Service and Amended Rules Concerning Filing and Service | Proposed Rule | 2021-01-11T05:00:00Z | 2021 | 1 | 2021-01-12T19:03:03Z | 2020-28056 | 0 | 0 | 09000064849ec954 | |||
| ETA_FRDOC_0001-0244 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Discretionary Review by the Secretary of Labor | Proposed Rule | 2021-01-04T05:00:00Z | 2021 | 1 | 2021-01-04T05:00:00Z | 2021-01-20T04:59:59Z | 2021-01-20T02:01:09Z | 2020-28952 | 0 | 0 | 09000064849db50c | |
| 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_FRDOC_0001-0184 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Administrative Claims under the Federal Tort Claims Act and Related Statutes | Proposed Rule | 2013-04-02T04:00:00Z | 2013 | 4 | 2013-04-02T04:00:00Z | 2013-04-02T12:50:24Z | 2013-07525 | 0 | 0 | 0900006481258fed | ||
| ETA_FRDOC_0001-0176 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Administrative Claims under the Federal Tort Claims Act and Related Statutes | Proposed Rule | 2012-04-13T04:00:00Z | 2012 | 4 | 2012-04-13T04:00:00Z | 2012-06-13T03:59:59Z | 2012-04-13T12:58:21Z | 2012-08735 | 0 | 0 | 0900006480feef42 |
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;