documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2006-24770" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2006-24770-0010 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | U.S. DOT/FRA - Order of Dismissal | Other | Order | 2009-01-12T05:00:00Z | 2009 | 1 | 2009-01-12T05:00:00Z | 2013-08-11T04:30:38Z | 0 | 0 | 0900006480808241 | ||
| FRA-2006-24770-0009 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | CSX Transportation, Inc. - Withdrawal of Request for Hearing | Other | Withdrawal of Complaint or Request for Hearing | 2008-12-15T05:00:00Z | 2008 | 12 | 2008-12-15T05:00:00Z | 2013-07-27T22:33:18Z | 0 | 0 | 09000064807d9107 | ||
| FRA-2006-24770-0008 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | U.S. DOT/FRA - Response to Petitioner's Statement of Issues and Claim for Relief | Other | Response(s) | 2008-12-10T05:00:00Z | 2008 | 12 | 2008-12-10T05:00:00Z | 2013-07-28T01:57:42Z | 0 | 0 | 09000064807d30b1 | ||
| FRA-2006-24770-0007 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | Brotherhood of Locomotive Engineers and Trainmen - Notice of Contacts for Hearing Respondent Bell | Other | Other | 2008-12-04T05:00:00Z | 2008 | 12 | 2008-12-04T05:00:00Z | 2013-07-27T22:32:04Z | 0 | 0 | 09000064807cb1d4 | ||
| FRA-2006-24770-0006 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | CSX Transportation - Petitoner's Statement of Issues and Claim for Relief | Other | Statement | 2008-11-17T05:00:00Z | 2008 | 11 | 2008-11-17T05:00:00Z | 2024-11-07T21:59:23Z | 1 | 0 | 09000064807aa0bb | ||
| FRA-2006-24770-0005 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | CSX - Request for Administrative Hearing | Other | Request | 2008-11-12T05:00:00Z | 2008 | 11 | 2008-11-12T05:00:00Z | 2024-11-12T04:26:12Z | 1 | 0 | 09000064807a5cab | ||
| FRA-2006-24770-0004 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | U.S.DOT/FRA - Notice of Contacts for the Federal Railroad Administration | Other | Other | 2008-11-10T05:00:00Z | 2008 | 11 | 2008-11-10T05:00:00Z | 2013-07-27T22:29:54Z | 0 | 0 | 090000648079d3e9 | ||
| FRA-2006-24770-0003 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | U.S. DOT/FRA - Initial Scheduling Order | Other | Other | 2008-10-30T04:00:00Z | 2008 | 10 | 2008-10-30T04:00:00Z | 2024-11-07T22:01:07Z | 1 | 0 | 0900006480781a58 | ||
| FRA-2006-24770-0002 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | U.S. DOT/FRA - Acknowledgment of Receipt of Request for Administrative Hearing | Other | Acknowledgement Letter/Receipt | 2006-05-16T04:00:00Z | 2006 | 5 | 2006-05-16T04:00:00Z | 2006-05-17T03:59:59Z | 2024-11-08T04:06:32Z | 1 | 0 | 09000064802b04b5 | |
| FRA-2006-24770-0001 | FRA | CSX - Request for Administrative Hearing FRA-2006-24770 | CSX Transportation - Request for Administrative Hearing - EQAL-2005-54 | Other | Request for Hearing | 2006-05-05T04:00:00Z | 2006 | 5 | 2006-05-05T04:00:00Z | 2006-05-06T03:59:59Z | 2024-11-08T04:06:32Z | 1 | 0 | 09000064802b04b4 |
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;