documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-2015-0078" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0078-0014 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | FRA-2015-0078 - Amtrak Decision Letter 2019 | Other | Decision | 2021-07-29T04:00:00Z | 2021 | 7 | 2021-07-29T04:00:00Z | 2021-07-29T15:12:03Z | 0 | 0 | 0900006484c1346c | ||
| FRA-2015-0078-0012 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | U.S. DOT/FRA-Temporary Extension Letter 2019 | Other | Letter(s) | 2019-02-12T05:00:00Z | 2019 | 2 | 2019-02-12T05:00:00Z | 2019-02-12T15:29:09Z | 0 | 0 | 0900006483a61365 | ||
| FRA-2015-0078-0011 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | Incoming Request 2019 | Other | Request | 2019-01-30T05:00:00Z | 2019 | 1 | 2019-01-30T05:00:00Z | 2019-01-30T17:20:25Z | 0 | 0 | 0900006483a2020b | ||
| FRA-2015-0078-0010 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | U. S. DOT/FRA-Expiration Notice 2018 | Other | Letter(s) | 2018-07-26T04:00:00Z | 2018 | 7 | 2018-07-26T04:00:00Z | 2018-07-26T20:18:35Z | 0 | 0 | 090000648355ed64 | ||
| FRA-2015-0078-0008 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | American Public Transportation Association - Letter | Other | Letter(s) | 2017-01-19T05:00:00Z | 2017 | 1 | 2016-10-24T04:00:00Z | 2024-11-11T21:35:08Z | 1 | 0 | 09000064824827a1 | ||
| FRA-2015-0078-0009 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | American Public Transportation Association - Brake System Test Executive Summary Version 06 | Other | Supplement (SUP) | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2024-11-11T21:35:08Z | 1 | 0 | 09000064824827ea | ||
| FRA-2015-0078-0007 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | Association of American Railroads - Certification | Other | Certifications | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-24T04:00:00Z | 2017-11-29T15:43:16Z | 0 | 0 | 0900006482343764 | ||
| FRA-2015-0078-0006 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | North American Transit Services Association - Waiver | Other | Waiver | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-24T04:00:00Z | 2024-11-12T06:15:11Z | 1 | 0 | 0900006482343da6 | ||
| FRA-2015-0078-0005 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | U.S.DOT/FRA- Decision | Other | Decision | 2016-03-01T05:00:00Z | 2016 | 3 | 2016-03-01T05:00:00Z | 2024-11-12T05:51:39Z | 1 | 0 | 0900006481e8e7ad | ||
| FRA-2015-0078-0002 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | U.S. DOT/FRA - Acknowledgement Letter/Receipt | Other | Acknowledgement Letter/Receipt | 2015-09-01T04:00:00Z | 2015 | 9 | 2015-09-01T04:00:00Z | 2015-09-01T15:42:15Z | 0 | 0 | 0900006481c420ce | ||
| FRA-2015-0078-0001 | FRA | North American Transit Services Association - Waiver Petition FRA-2015-0078 | APTA ECP FRA Brake Petition for Waiver and Supporting Attachments | Other | Petition(s) | 2015-08-04T04:00:00Z | 2015 | 8 | 2015-08-04T04:00:00Z | 2024-11-12T05:41:56Z | 1 | 0 | 0900006481bbef06 |
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;