documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2010-0056" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, withdrawn, 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-2010-0056-0543 | FRA | BNSF Railway Company - Positive Train Control Plans FRA-2010-0056 | BNSF Q3 2016 Quarterly PTC Progress Report Form | Other | Report | 2016-11-22T05:00:00Z | 2016 | 11 | 2016-11-22T05:00:00Z | 2024-11-12T06:17:06Z | 1 | 0 | 09000064823ab5b8 | ||
| FRA-2010-0056-0542 | FRA | BNSF Railway Company - Positive Train Control Plans FRA-2010-0056 | BNSF Q3 2016 Quarterly PTC Progress Report Form (FRA F 6180.165) v1.0 REDACTED | Other | 2016-11-18T00:00:00Z | 2016 | 11 | 2024-11-07T23:52:05Z | 0 | 1 | 09000064823a130d | ||||
| FRA-2010-0056-0541 | FRA | BNSF Railway Company - Positive Train Control Plans FRA-2010-0056 | U.S.DOT/FRA - Decision | Other | Decision | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-24T04:00:00Z | 2024-11-11T21:32:33Z | 1 | 0 | 0900006482343b5a | ||
| FRA-2010-0056-0540 | FRA | BNSF Railway Company - Positive Train Control Plans FRA-2010-0056 | BNSF Q1-Q2 2016 Quarterly PTC Progress Report Form (FRA F 6180.165) v1.1 REDACTED | Other | Report | 2016-09-13T04:00:00Z | 2016 | 9 | 2016-09-13T04:00:00Z | 2016-09-13T19:41:42Z | 0 | 0 | 0900006482206dbf | ||
| FRA-2010-0056-0539 | FRA | BNSF Railway Company - Positive Train Control Plans FRA-2010-0056 | BNSF 2015 Annual PTC Progress Report Form FRA F 6180 166 v1.0 REDACTED | Other | Report | 2016-04-29T04:00:00Z | 2016 | 4 | 2016-04-29T04:00:00Z | 2016-04-29T13:14:20Z | 0 | 0 | 0900006481f97bac | ||
| FRA-2010-0056-0538 | FRA | BNSF Railway Company - Positive Train Control Plans FRA-2010-0056 | U.S. DOT/FRA - Final Letter | Other | Letter(s) | 2016-03-29T04:00:00Z | 2016 | 3 | 2016-03-29T04:00:00Z | 2024-11-12T05:52:32Z | 1 | 0 | 0900006481ee59e2 | ||
| FRA-2010-0056-0537 | FRA | BNSF Railway Company - Positive Train Control Plans FRA-2010-0056 | U.S. DOT/FRA - Letter to SMART | Other | Letter(s) | 2016-03-08T05:00:00Z | 2016 | 3 | 2016-03-08T05:00:00Z | 2024-11-12T06:03:51Z | 1 | 0 | 0900006481eb1ca8 |
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;