documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2002-13162" and posted_year = 2003 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-2002-13162-0014 | FRA | Union Pacific Railroad Company - Petition for Administrative Hearing - Engineer T. K. Rackley FRA-2002-13162 | Brotherhood of Locomotive Engineers - Request to Hold Docket in Abeyance Pending the Outcome of the Arbitration | Other | Request | 2003-04-21T04:00:00Z | 2003 | 4 | 2003-04-21T04:00:00Z | 2003-04-23T03:59:59Z | 2024-11-12T02:32:21Z | 1 | 0 | 0900006480308a11 | |
| FRA-2002-13162-0013 | FRA | Union Pacific Railroad Company - Petition for Administrative Hearing - Engineer T. K. Rackley FRA-2002-13162 | U.S. DOT/FRA - Letter re: Status of Docket | Other | Letter(s) | 2003-04-04T05:00:00Z | 2003 | 4 | 2003-04-04T05:00:00Z | 2003-04-10T03:59:59Z | 2024-11-12T02:32:21Z | 1 | 0 | 0900006480308a10 | |
| FRA-2002-13162-0012 | FRA | Union Pacific Railroad Company - Petition for Administrative Hearing - Engineer T. K. Rackley FRA-2002-13162 | U.S. DOT/FRA - Request for Joint Status Report | Other | Request | 2003-03-31T05:00:00Z | 2003 | 3 | 2003-03-31T05:00:00Z | 2003-04-02T04:59:59Z | 2024-11-12T02:32:21Z | 1 | 0 | 0900006480308a0f | |
| FRA-2002-13162-0011 | FRA | Union Pacific Railroad Company - Petition for Administrative Hearing - Engineer T. K. Rackley FRA-2002-13162 | Brotherhood of Locomotive Engineers - T. K. Rackley's Preliminary Discovery Statement | Other | Discovery | 2003-02-20T05:00:00Z | 2003 | 2 | 2003-02-20T05:00:00Z | 2003-02-25T04:59:59Z | 2024-11-12T02:32:21Z | 1 | 0 | 0900006480308a0d | |
| FRA-2002-13162-0010 | FRA | Union Pacific Railroad Company - Petition for Administrative Hearing - Engineer T. K. Rackley FRA-2002-13162 | Union Pacific Railroad Company - Preliminary Discovery Statement | Other | Statement | 2003-02-04T05:00:00Z | 2003 | 2 | 2003-02-04T05:00:00Z | 2003-02-06T04:59:59Z | 2024-11-12T02:32:20Z | 1 | 0 | 0900006480308a0c | |
| FRA-2002-13162-0009-0002 | FRA | Union Pacific Railroad Company - Petition for Administrative Hearing - Engineer T. K. Rackley FRA-2002-13162 | T.K. Rackley - Response to Petitioner's Statement of Issues and Claim for Relief | Other | Response(s) | 2003-01-22T05:00:00Z | 2003 | 1 | 2003-01-22T05:00:00Z | 2003-01-23T04:59:59Z | 2024-11-12T02:32:39Z | 1 | 0 | 0900006480308a22 | |
| FRA-2002-13162-0009-0001 | FRA | Union Pacific Railroad Company - Petition for Administrative Hearing - Engineer T. K. Rackley FRA-2002-13162 | T.K. Rackley - Response to Petitioner's Statement of Issues and Claim for Relief | Other | Response(s) | 2003-01-22T05:00:00Z | 2003 | 1 | 2003-01-22T05:00:00Z | 2003-01-23T04:59:59Z | 2024-11-12T02:32:23Z | 1 | 0 | 0900006480308a20 | |
| FRA-2002-13162-0008 | FRA | Union Pacific Railroad Company - Petition for Administrative Hearing - Engineer T. K. Rackley FRA-2002-13162 | U.S. DOT/FRA - Preliminary Discovery Statement | Other | Discovery | 2003-01-21T05:00:00Z | 2003 | 1 | 2003-01-21T05:00:00Z | 2003-01-22T04:59:59Z | 2024-11-12T02:32:23Z | 1 | 0 | 0900006480308a1f |
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;