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 = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_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-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-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 | |
| 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_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;