documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "ETA", document_type = "Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2013-0001-0001 | ETA | Removal of Job Training Partnership Act Implementing Regulations ETA-2013-0001 | Removal of Job Training Partnership Act Implementing Regulations | Rule | 2012-12-31T05:00:00Z | 2012 | 12 | 2012-12-31T05:00:00Z | 2013-01-31T04:59:59Z | 2013-06-25T01:50:18Z | 2012-31029 | 0 | 0 | 09000064811a054a | |
| ETA_FRDOC_0001-0180 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Wage Methodology for the Temporary Non-Agricultural Employment H-2B Program; Delay of Effective Date | Rule | 2012-10-02T04:00:00Z | 2012 | 10 | 2012-10-02T04:00:00Z | 2012-10-02T13:11:07Z | 2012-24264 | 0 | 0 | 0900006481130e40 | ||
| ETA_FRDOC_0001-0179 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Temporary Non-agricultural Employment of H-2B Aliens in the United States | Rule | 2012-05-16T04:00:00Z | 2012 | 5 | 2012-05-16T04:00:00Z | 2012-05-16T13:03:56Z | 2012-11859 | 0 | 0 | 0900006481010634 | ||
| ETA_FRDOC_0001-0178 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Changes to the Labor Certification Process for the Temporary Non-Agricultural Employment of H-2B Aliens in the United States; Revisions to Transition Period | Rule | 2012-04-23T04:00:00Z | 2012 | 4 | 2012-04-23T04:00:00Z | 2012-04-23T13:06:27Z | 2012-09612 | 0 | 0 | 0900006480ff608e | ||
| ETA_FRDOC_0001-0177 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Administrative Claims under the Federal Tort Claims Act and Related Statutes | Rule | 2012-04-13T04:00:00Z | 2012 | 4 | 2012-04-13T04:00:00Z | 2012-06-13T03:59:59Z | 2012-04-13T12:58:31Z | 2012-08741 | 0 | 0 | 0900006480feef55 | |
| ETA_FRDOC_0001-0175 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Labor Certification Process for Temporary Non-Agricultural Employment of H-2B Aliens in United States: Transition Period; Guidance | Rule | 2012-03-20T04:00:00Z | 2012 | 3 | 2012-03-20T04:00:00Z | 2012-03-20T13:12:02Z | 2012-06580 | 0 | 0 | 0900006480fdb7bb | ||
| ETA_FRDOC_0001-0174 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Non-material Change to the Farm Labor Survey Used for Determining the Adverse Effect Wage Rate | Rule | 2012-03-02T05:00:00Z | 2012 | 3 | 2012-03-02T05:00:00Z | 2012-03-02T14:03:43Z | 2012-05201 | 0 | 0 | 0900006480fccc41 | ||
| ETA_FRDOC_0001-0173 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Temporary Non-agricultural Employment of H-2B Aliens in the United States | Rule | 2012-02-21T05:00:00Z | 2012 | 2 | 2012-02-21T05:00:00Z | 2012-02-21T14:02:40Z | 2012-03058 | 0 | 0 | 0900006480fbbcfd | ||
| ETA-2010-0003-0031 | ETA | YouthBuild Program ETA-2010-0003 | YouthBuild Program | Rule | 2012-02-15T05:00:00Z | 2012 | 2 | 2012-02-15T05:00:00Z | 2013-04-15T13:56:02Z | 2012-02373 | 0 | 0 | 0900006480fb729b | ||
| ETA_FRDOC_0001-0171 | ETA | eRecently Posted ETA Rules and Notices. ETA_FRDOC_0001 | Senior Community Service Employment Program: Additional Indicator on Volunteer Work | Rule | 2012-01-31T05:00:00Z | 2012 | 1 | 2012-01-31T05:00:00Z | 2012-01-31T14:08:58Z | 2012-01324 | 0 | 0 | 0900006480fa97f6 |
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;