documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-1999-6394" 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-1999-6394-0008 | FRA | Burlington Northern Santa Fe Railway - Locomotive Engineer Certification Hearing FRA-1999-6394 | U.S. DOT/FRA - Notice of Submission of an Executed Stipulation of Dismissal for Signature | Notice | Notice | 2001-04-06T04:00:00Z | 2001 | 4 | 2001-04-06T04:00:00Z | 2001-04-11T03:59:59Z | 2008-01-08T19:58:00Z | 0 | 0 | 0900006480332337 | |
| FRA-1999-6394-0007 | FRA | Burlington Northern Santa Fe Railway - Locomotive Engineer Certification Hearing FRA-1999-6394 | U.S. DOT/FRA - Stipulation and Order of Dismissal | Other | Stipulation(s) | 2001-04-06T04:00:00Z | 2001 | 4 | 2001-04-06T04:00:00Z | 2001-04-11T03:59:59Z | 2008-01-08T20:00:12Z | 0 | 0 | 0900006480332336 | |
| FRA-1999-6394-0006 | FRA | Burlington Northern Santa Fe Railway - Locomotive Engineer Certification Hearing FRA-1999-6394 | U.S. DOT/FRA - Notice of Appearance for Respondent Federal Railroad Administration | Notice | Notice | 2001-01-03T05:00:00Z | 2001 | 1 | 2001-01-03T05:00:00Z | 2001-01-04T04:59:59Z | 2008-01-08T19:59:04Z | 0 | 0 | 0900006480332334 | |
| FRA-1999-6394-0005 | FRA | Burlington Northern Santa Fe Railway - Locomotive Engineer Certification Hearing FRA-1999-6394 | U.S. DOT/FRA - Counsel Representative for the FAA | Other | Additional Information | 2000-12-20T05:00:00Z | 2000 | 12 | 2000-12-20T05:00:00Z | 2000-12-22T04:59:59Z | 2008-01-08T20:00:12Z | 0 | 0 | 0900006480332333 | |
| FRA-1999-6394-0004 | FRA | Burlington Northern Santa Fe Railway - Locomotive Engineer Certification Hearing FRA-1999-6394 | Brotherhood of Locomotive Engineers - Hearing Petitioner Costello's Change to the Service List and Provisions of Contact Numbers | Other | Certificate of Service | 2000-12-20T05:00:00Z | 2000 | 12 | 2000-12-20T05:00:00Z | 2000-12-22T04:59:59Z | 2008-01-08T19:59:04Z | 0 | 0 | 090000648033232f | |
| FRA-1999-6394-0003 | FRA | Burlington Northern Santa Fe Railway - Locomotive Engineer Certification Hearing FRA-1999-6394 | Brotherhood of Locomotive Engineers - Request for Extension of 10 Days to Respond | Other | Request for Extension of Time in which to file a document | 2000-12-12T05:00:00Z | 2000 | 12 | 2000-12-12T05:00:00Z | 2000-12-13T04:59:59Z | 2008-01-08T19:59:49Z | 0 | 0 | 090000648033232e | |
| FRA-1999-6394-0002 | FRA | Burlington Northern Santa Fe Railway - Locomotive Engineer Certification Hearing FRA-1999-6394 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 1999-10-22T04:00:00Z | 1999 | 10 | 1999-10-22T04:00:00Z | 1999-10-26T03:59:59Z | 2008-01-08T19:59:49Z | 0 | 0 | 090000648033232d | |
| FRA-1999-6394-0001 | FRA | Burlington Northern Santa Fe Railway - Locomotive Engineer Certification Hearing FRA-1999-6394 | Burlington Northern Santa Fe Railway - Request for Hearing - Locomotive Engineers Decertification Case | Other | Request for Hearing | 1999-10-22T04:00:00Z | 1999 | 10 | 1999-10-22T04:00:00Z | 1999-10-23T03:59:59Z | 2008-01-08T19:59:30Z | 0 | 0 | 090000648033232b |
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;