documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2001-10495" and posted_year = 2002 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-2001-10495-0011 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | Brotherhood of Locomotive Engineers - Response to Petitioner's Statement of Issues and Claim for Relief | Other | Response(s) | 2002-08-20T04:00:00Z | 2002 | 8 | 2002-08-20T04:00:00Z | 2002-08-30T03:59:59Z | 2024-11-12T02:14:58Z | 1 | 0 | 090000648030200b | |
| FRA-2001-10495-0008-0002 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | U.S. DOT/FRA - Request for Extension of Time and grant by Administrative Hearing Officer, signed July 22, 2002. | Other | Extension of Time | 2002-07-25T04:00:00Z | 2002 | 7 | 2002-07-25T04:00:00Z | 2002-07-26T03:59:59Z | 2024-11-12T02:15:11Z | 1 | 0 | 090000648030201b | |
| FRA-2001-10495-0008-0001 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | U.S. DOT/FRA - Request for Extension of Time and grant by Administrative Hearing Officer, signed July 22, 2002. | Other | Extension of Time | 2002-07-25T04:00:00Z | 2002 | 7 | 2002-07-25T04:00:00Z | 2002-07-26T03:59:59Z | 2024-11-12T02:15:11Z | 1 | 0 | 090000648030201a | |
| FRA-2001-10495-0010 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | U.S. DOT/FRA - Response to Petitioner's Statement of Issues and Claim for Relief | Other | Petition for Reconsideration | 2002-07-23T04:00:00Z | 2002 | 7 | 2002-07-23T04:00:00Z | 2002-08-09T03:59:59Z | 2024-11-12T02:14:58Z | 1 | 0 | 090000648030200a | |
| FRA-2001-10495-0009 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | U.S. DOT/FRA - Request for Extension to Prepare Respond to Petitioner's Statement of Issues and Claim for Relief | Other | Extension of Time | 2002-07-22T04:00:00Z | 2002 | 7 | 2002-07-22T04:00:00Z | 2002-08-09T03:59:59Z | 2024-11-12T02:15:11Z | 1 | 0 | 090000648030201c | |
| FRA-2001-10495-0006 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | Union Pacific Railroad Company - Notice of Contacts | Notice | Notice | 2002-06-10T04:00:00Z | 2002 | 6 | 2002-06-10T04:00:00Z | 2002-07-12T03:59:59Z | 2024-11-12T02:15:11Z | 1 | 0 | 0900006480302018 | |
| FRA-2001-10495-0007 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | Brotherhood of Locomotive Engineers - Petitioner Thieleman's Change to the Service List and Provisions of Contact Numbers | Other | Certificate of Service | 2002-06-04T04:00:00Z | 2002 | 6 | 2002-06-04T04:00:00Z | 2002-07-16T03:59:59Z | 2024-11-12T02:15:11Z | 1 | 0 | 0900006480302019 | |
| FRA-2001-10495-0004 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | U.S. DOT/ FRA - Notice of Contacts | Notice | Notice | 2002-05-16T04:00:00Z | 2002 | 5 | 2002-05-16T04:00:00Z | 2002-05-17T03:59:59Z | 2024-11-12T02:15:11Z | 1 | 0 | 0900006480302016 | |
| FRA-2001-10495-0005 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | U.S. DOT/FRA - Notice of Contacts | Notice | Notice | 2002-05-14T04:00:00Z | 2002 | 5 | 2002-05-14T04:00:00Z | 2002-05-30T03:59:59Z | 2024-11-12T02:15:11Z | 1 | 0 | 0900006480302017 | |
| FRA-2001-10495-0003 | FRA | Union Pacific Railroad Company - Locomotive Engineer Certification Hearing FRA-2001-10495 | U.S. DOT/FRA - Initial Scheduling Order | Other | Order | 2002-05-10T04:00:00Z | 2002 | 5 | 2002-05-10T04:00:00Z | 2002-05-16T03:59:59Z | 2024-11-12T02:15:11Z | 1 | 0 | 0900006480302015 |
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;