documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2015-0130" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, 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-2015-0130-0010 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | U.S. DOT/FRA-BNSF Decision Letter 2018 | Other | Decision | 2018-09-14T04:00:00Z | 2018 | 9 | 2018-09-14T04:00:00Z | 2018-09-14T13:41:15Z | 0 | 0 | 09000064836e233d | ||
| FRA-2015-0130-0009 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | U.S. DOT/FRA- Waiver Extension Acknowledgement Letter 2018 | Other | Acknowledgement Letter/Receipt | 2018-06-25T04:00:00Z | 2018 | 6 | 2018-06-25T04:00:00Z | 2018-06-25T16:34:58Z | 0 | 0 | 090000648344630f | ||
| FRA-2015-0130-0008 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | U.S. DOT/FRA- Waiver Extension Request 2018 | Other | Waiver | 2018-06-21T04:00:00Z | 2018 | 6 | 2018-06-21T04:00:00Z | 2018-06-21T13:47:37Z | 0 | 0 | 0900006483430054 | ||
| FRA-2015-0130-0007 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | U.S. DOT/FRA - Decision | Other | Decision | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T04:00:00Z | 2024-11-12T06:08:20Z | 1 | 0 | 0900006481fa4e87 | ||
| FRA-2015-0130-0006 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | U.S. DOT/FRA- Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2016-03-08T05:00:00Z | 2016 | 3 | 2016-03-08T05:00:00Z | 2024-11-12T06:01:23Z | 1 | 0 | 0900006481ea67d0 | ||
| FRA-2015-0130-0005 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | BNSF Railway - Waiver Amendment Request | Other | Amendment | 2016-02-10T05:00:00Z | 2016 | 2 | 2016-02-10T05:00:00Z | 2024-11-12T05:52:51Z | 1 | 0 | 0900006481e58be1 | ||
| FRA-2015-0130-0004 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | BNSF Railway - Waiver Amendment Request | Other | Request | 2016-02-03T05:00:00Z | 2016 | 2 | 2016-02-03T05:00:00Z | 2024-11-12T05:58:57Z | 1 | 0 | 0900006481e30d64 | ||
| FRA-2015-0130-0003 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | Petitions for Waivers of Compliance, | Notice | Waivers | 2015-12-24T05:00:00Z | 2015 | 12 | 2015-12-24T05:00:00Z | 2016-01-26T04:59:59Z | 2024-11-11T21:17:48Z | 2015-32453 | 1 | 0 | 0900006481dd051d |
| FRA-2015-0130-0002 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | U.S. DOT/FRA - Decision | Other | Decision | 2015-12-22T05:00:00Z | 2015 | 12 | 2015-12-22T05:00:00Z | 2024-11-11T21:12:05Z | 1 | 0 | 0900006481dba67c | ||
| FRA-2015-0130-0001 | FRA | BNSF Railway - Waiver Petition FRA-2015-0130 | BNSF - Continuous Testing - Waiver Request | Other | Waiver | 2015-11-19T05:00:00Z | 2015 | 11 | 2015-11-19T05:00:00Z | 2024-11-11T21:13:28Z | 1 | 0 | 0900006481d5647f |
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;