documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FRA-2006-26608" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2006-26608-0018 | FRA | Request for Administrative Hearing - L. M. Keith - Locomotive Engineer - 49 CFR Part 240.407 FRA-2006-26608 | U.S. DOT/FRA - Order No. 5 Returning the Case to the Active Docket | Other | Order | 2009-11-13T05:00:00Z | 2009 | 11 | 2009-11-13T05:00:00Z | 2013-07-27T22:59:35Z | 0 | 0 | 0900006480a560f9 | ||
| FRA-2006-26608-0017 | FRA | Request for Administrative Hearing - L. M. Keith - Locomotive Engineer - 49 CFR Part 240.407 FRA-2006-26608 | Brotherhood of Locomotive Engineers and Trainmen - Richard K. Radek's Request To Hold All Proceedings - Locomotive Engineer Certification (All Cases BLET is a Party) | Other | Request | 2009-04-23T04:00:00Z | 2009 | 4 | 2009-04-23T04:00:00Z | 2013-08-11T04:32:58Z | 0 | 0 | 0900006480967452 | ||
| FRA-2006-26608-0016 | FRA | Request for Administrative Hearing - L. M. Keith - Locomotive Engineer - 49 CFR Part 240.407 FRA-2006-26608 | U.S. DOT/FRA - Order No. 4, Abeyance Order | Other | Order | 2009-01-25T05:00:00Z | 2009 | 1 | 2009-01-25T05:00:00Z | 2024-11-12T04:27:56Z | 1 | 0 | 090000648082a879 | ||
| FRA-2006-26608-0015 | FRA | Request for Administrative Hearing - L. M. Keith - Locomotive Engineer - 49 CFR Part 240.407 FRA-2006-26608 | Joint Motion to Hold this Case in Abeyance Pending the Outcome of a Related Arbitration Proceeding | Other | Motion | 2009-01-22T05:00:00Z | 2009 | 1 | 2009-01-22T05:00:00Z | 2024-11-12T04:27:35Z | 1 | 0 | 0900006480829754 | ||
| FRA-2006-26608-0014 | FRA | Request for Administrative Hearing - L. M. Keith - Locomotive Engineer - 49 CFR Part 240.407 FRA-2006-26608 | U.S.DOT/FRA - Joint Response of Respondents the Kansas City Southern Railway Company and Federal Railroad Administration to Petitioner's Initial Statement of Claims and Request for Relief | Other | Response(s) | 2009-01-06T05:00:00Z | 2009 | 1 | 2009-01-06T05:00:00Z | 2024-11-12T04:31:27Z | 1 | 0 | 090000648080f7ad |
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;