documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2004-18065" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2004-18065-0014 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | "U.S. DOT/FRA - Notice of Change of Counsel for the Federal | Other | Other | 2007-10-31T04:00:00Z | 2007 | 10 | 2007-10-31T04:00:00Z | 2013-07-27T20:24:59Z | 0 | 0 | 0900006480357ba5 | ||
| FRA-2004-18065-0013 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | U.S.DOT/FRA - The Federal Railroad Administration's Reply to Petitioner's Appeal to the FRA Administrator | Other | Other | 2007-10-31T04:00:00Z | 2007 | 10 | 2007-10-31T04:00:00Z | 2013-07-27T20:24:59Z | 0 | 0 | 0900006480357b9d | ||
| FRA-2004-18065-0011 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | Certificate of Service | Other | Certificate of Service | 2007-10-25T04:00:00Z | 2007 | 10 | 2007-10-25T04:00:00Z | 2024-11-12T04:01:47Z | 1 | 0 | 0900006480354a1e | ||
| FRA-2004-18065-0012 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | Response To Petitioner's Appeal To The FRA Administrator | Other | Response(s) | 2007-10-25T04:00:00Z | 2007 | 10 | 2007-10-25T04:00:00Z | 2024-11-12T04:01:35Z | 1 | 0 | 0900006480354a2e | ||
| FRA-2004-18065-0009 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | Request for Extension to File Response to Petitioner's Appeal | Other | Request | 2007-10-16T04:00:00Z | 2007 | 10 | 2007-10-16T04:00:00Z | 2013-07-12T21:41:06Z | 0 | 0 | 09000064802fe728 | ||
| FRA-2004-18065-0008 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | K.L. Hensley, Petitioner's Appeal | Other | Appeal | 2007-10-16T04:00:00Z | 2007 | 10 | 2007-10-16T04:00:00Z | 2024-11-12T02:14:18Z | 1 | 0 | 09000064802fe604 | ||
| FRA-2004-18065-0010 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | U.S. DOT/FRA - Petitioner Hensley's Appeal to the FRA Administrator | Other | Appeal | 2007-10-16T04:00:00Z | 2007 | 10 | 2007-10-16T04:00:00Z | 2013-07-12T21:41:22Z | 0 | 0 | 09000064802ff0ea | ||
| FRA-2004-18065-0007-0001 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | U.S. DOT/FRA - Order Granting Motion to Dismiss | Other | Order | 2007-09-17T04:00:00Z | 2007 | 9 | 2007-09-17T04:00:00Z | 2007-09-18T03:59:59Z | 2024-11-12T02:18:31Z | 1 | 0 | 09000064802fe377 | |
| FRA-2004-18065-0007 | FRA | Locomotive Engineer Certification - Request for Administrative Hearing FRA-2004-18065 | U.S. DOT/FRA - Order Granting Motion to Dismiss | Other | Order | 2007-09-17T04:00:00Z | 2007 | 9 | 2007-09-17T04:00:00Z | 2007-09-18T03:59:59Z | 2024-11-07T21:49:32Z | 1 | 0 | 090000648038427d |
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;