documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2000-8441" and posted_year = 2001 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-2000-8441-0009 | FRA | The Burlington Northern and Santa Fe Railway Company ("BNSF") - Request for Hearing FRA-2000-8441 | U.S. DOT/FRA - Order to File a Joint Status Report by January 16, 2002 | Other | Order | 2001-12-26T05:00:00Z | 2001 | 12 | 2001-12-26T05:00:00Z | 2001-12-27T04:59:59Z | 2008-01-08T19:58:25Z | 0 | 0 | 0900006480344170 | |
| FRA-2000-8441-0008 | FRA | The Burlington Northern and Santa Fe Railway Company ("BNSF") - Request for Hearing FRA-2000-8441 | U.S. DOT/FRA - Notice of New Representative for the Federal Railroad Administration | Notice | Notice | 2001-10-23T04:00:00Z | 2001 | 10 | 2001-10-23T04:00:00Z | 2001-10-26T03:59:59Z | 2008-01-08T19:58:25Z | 0 | 0 | 090000648034416f | |
| FRA-2000-8441-0007 | FRA | The Burlington Northern and Santa Fe Railway Company ("BNSF") - Request for Hearing FRA-2000-8441 | U.S. DOT/FRA - Response to Hearing Petitioner's Statement of Claim | Other | Response(s) | 2001-06-12T04:00:00Z | 2001 | 6 | 2001-06-12T04:00:00Z | 2001-06-14T03:59:59Z | 2008-01-08T19:58:02Z | 0 | 0 | 090000648034416e | |
| FRA-2000-8441-0006 | FRA | The Burlington Northern and Santa Fe Railway Company ("BNSF") - Request for Hearing FRA-2000-8441 | Burlington Northern and Santa Fe Railway Company - Hearing Petitioner's Statement of Claim | Other | Statement | 2001-04-25T04:00:00Z | 2001 | 4 | 2001-04-25T04:00:00Z | 2001-05-09T03:59:59Z | 2008-01-08T19:58:02Z | 0 | 0 | 090000648034416d | |
| FRA-2000-8441-0005 | FRA | The Burlington Northern and Santa Fe Railway Company ("BNSF") - Request for Hearing FRA-2000-8441 | U.S. DOT/FRA - Initial Scheduling Order | Other | Order | 2001-04-06T04:00:00Z | 2001 | 4 | 2001-04-06T04:00:00Z | 2001-04-11T03:59:59Z | 2008-01-08T19:57:33Z | 0 | 0 | 090000648034416c | |
| FRA-2000-8441-0004 | FRA | The Burlington Northern and Santa Fe Railway Company ("BNSF") - Request for Hearing FRA-2000-8441 | U.S.DOT/FRA - Letter Transferring Information from Docket FRA-01-9038 | Other | Correction(s) | 2001-03-14T05:00:00Z | 2001 | 3 | 2001-03-14T05:00:00Z | 2001-03-16T04:59:59Z | 2008-01-08T19:58:46Z | 0 | 0 | 090000648034416b | |
| FRA-2000-8441-0003 | FRA | The Burlington Northern and Santa Fe Railway Company ("BNSF") - Request for Hearing FRA-2000-8441 | U.S. DOT/FRA - Acknowledgement Receipt | Other | Acknowledgement Letter/Receipt | 2001-03-05T05:00:00Z | 2001 | 3 | 2001-03-05T05:00:00Z | 2001-03-08T04:59:59Z | 2008-01-08T20:00:14Z | 0 | 0 | 090000648034416a | |
| FRA-2000-8441-0002 | FRA | The Burlington Northern and Santa Fe Railway Company ("BNSF") - Request for Hearing FRA-2000-8441 | The Burlington Northern and Santa Fe Railway Company - Request for Hearing | Other | Request for Hearing | 2001-03-05T05:00:00Z | 2001 | 3 | 2001-03-05T05:00:00Z | 2001-03-08T04:59:59Z | 2008-01-08T19:59:07Z | 0 | 0 | 0900006480344169 |
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;