documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-1998-4760" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-1998-4760-0009 | FRA | Locomotive Engineer Certification Hearing FRA-1998-4760 | U.S. DOT/FRA - Order | Other | Order | 2000-10-13T04:00:00Z | 2000 | 10 | 2000-10-13T04:00:00Z | 2000-10-17T03:59:59Z | 2024-11-07T18:57:25Z | 1 | 0 | 0900006480327ac9 | |
| FRA-1998-4760-0008 | FRA | Locomotive Engineer Certification Hearing FRA-1998-4760 | U.S. DOT/FRA - Stipulation for Dismissal/Order | Other | Stipulation(s) | 2000-09-11T04:00:00Z | 2000 | 9 | 2000-09-11T04:00:00Z | 2000-09-13T03:59:59Z | 2024-11-07T18:57:24Z | 1 | 0 | 0900006480327ac8 | |
| FRA-1998-4760-0006 | FRA | Locomotive Engineer Certification Hearing FRA-1998-4760 | U.S. DOT/FRA - Letter re Abeyance Issuing an Initial Scheduling Order | Other | Memo, Action Memo or Letter | 2000-09-05T04:00:00Z | 2000 | 9 | 2000-09-05T04:00:00Z | 2000-09-06T03:59:59Z | 2024-11-07T18:53:56Z | 1 | 0 | 0900006480327ac6 | |
| FRA-1998-4760-0007 | FRA | Locomotive Engineer Certification Hearing FRA-1998-4760 | U.S. DOT/FRA - Stipulation for Dismissal | Other | Stipulation(s) | 2000-09-05T04:00:00Z | 2000 | 9 | 2000-09-05T04:00:00Z | 2000-09-06T03:59:59Z | 2024-11-07T18:56:59Z | 1 | 0 | 0900006480327ac7 | |
| FRA-1998-4760-0005 | FRA | Locomotive Engineer Certification Hearing FRA-1998-4760 | Brotherhood of Locomotive Engineers - Answer to Order No. 1 | Other | Answer | 2000-05-08T04:00:00Z | 2000 | 5 | 2000-05-08T04:00:00Z | 2000-05-09T03:59:59Z | 2024-11-07T18:53:56Z | 1 | 0 | 0900006480327ac5 | |
| FRA-1998-4760-0004 | FRA | Locomotive Engineer Certification Hearing FRA-1998-4760 | U.S. DOT/FRA - Notice of Appearance | Notice | Notice | 2000-04-19T04:00:00Z | 2000 | 4 | 2000-04-19T04:00:00Z | 2000-04-21T03:59:59Z | 2024-11-07T18:53:56Z | 1 | 0 | 0900006480327ac3 | |
| FRA-1998-4760-0002 | FRA | Locomotive Engineer Certification Hearing FRA-1998-4760 | Brotherhood of Locomotive Engineers - Request for Hearing - Locomotive Engineer Certification Hearing | Other | Request for Hearing | 1998-12-16T05:00:00Z | 1998 | 12 | 1998-12-16T05:00:00Z | 1999-01-28T04:59:59Z | 2024-11-07T18:53:56Z | 1 | 0 | 0900006480327ac2 | |
| FRA-1998-4760-0001 | FRA | Locomotive Engineer Certification Hearing FRA-1998-4760 | Burlington Northern and Santa Fe Railway Company - Request for Hearing - Locomotive Engineer Certification Hearing | Other | Request for Hearing | 1998-11-06T05:00:00Z | 1998 | 11 | 1998-11-06T05:00:00Z | 1998-11-18T04:59:59Z | 2024-11-07T18:53:56Z | 1 | 0 | 0900006480327ac1 |
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;