documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2018-0049" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2018-0049-0043 | FRA | BNSF Railway FRA-2018-0049 | BHE Waiver Test Committee Special Session Three 10/31/2025 - Issues Review and Voting Approval of Waiver Continuation and Sub Committee Work | Other | Waiver | 2025-12-11T05:00:00Z | 2025 | 12 | 2025-12-11T05:00:00Z | 2025-12-11T19:01:39Z | 0 | 0 | 09000064b90bec9b | ||
| FRA-2018-0049-0042 | FRA | BNSF Railway FRA-2018-0049 | BHE Waiver Test Committee Special Sessions 10/20 & 10/27 | Other | Waiver | 2025-12-11T05:00:00Z | 2025 | 12 | 2025-12-11T05:00:00Z | 2025-12-11T19:00:45Z | 0 | 0 | 09000064b90be04d | ||
| FRA-2018-0049-0040 | FRA | BNSF Railway FRA-2018-0049 | FRA-2018-0049 Sand Hills Decision Letter 0825 | Other | Decision | 2025-07-31T04:00:00Z | 2025 | 7 | 2025-07-31T04:00:00Z | 2025-07-31T20:14:35Z | 0 | 0 | 09000064b8ec06fe | ||
| FRA-2018-0049-0041 | FRA | BNSF Railway FRA-2018-0049 | Quarterly Report on BNSF program - Brake Health Effectiveness (BHE) | Other | Report | 2025-07-31T04:00:00Z | 2025 | 7 | 2025-07-31T04:00:00Z | 2025-07-31T20:19:36Z | 0 | 0 | 09000064b8ebc076 | ||
| FRA-2018-0049-0039 | FRA | BNSF Railway FRA-2018-0049 | FRA-2018-0049 BHE Test Committee Vote - Minutes - Update July 2025 | Other | Minutes | 2025-07-18T04:00:00Z | 2025 | 7 | 2025-07-18T04:00:00Z | 2025-07-18T15:57:38Z | 0 | 0 | 09000064b8e8181b | ||
| FRA-2018-0049-0038 | FRA | BNSF Railway FRA-2018-0049 | FRA-2018-0049 Decision Letter 2025 | Other | Decision | 2025-05-19T04:00:00Z | 2025 | 5 | 2025-05-19T04:00:00Z | 2025-05-21T21:09:05Z | 0 | 0 | 09000064b8d68c72 | ||
| FRA-2018-0049-0037 | FRA | BNSF Railway FRA-2018-0049 | BHE Quarterly Update of Test Committee | Other | Report | 2025-02-18T05:00:00Z | 2025 | 2 | 2025-02-18T05:00:00Z | 2025-02-18T15:36:29Z | 0 | 0 | 09000064869554ec |
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;