documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2014-0124" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2014-0124-0009 | FRA | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition FRA-2014-0124 | U.S. DOT/FRA - Amtrak - Waiver Update Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2015-10-26T04:00:00Z | 2015 | 10 | 2015-10-26T04:00:00Z | 2015-10-26T17:46:42Z | 0 | 0 | 0900006481cea007 | ||
| FRA-2014-0124-0008 | FRA | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition FRA-2014-0124 | Amtrak - Incoming Clarification Letter | Other | Letter(s) | 2015-10-06T04:00:00Z | 2015 | 10 | 2015-10-06T04:00:00Z | 2015-10-06T17:43:27Z | 0 | 0 | 0900006481cb4981 | ||
| FRA-2014-0124-0007 | FRA | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition FRA-2014-0124 | Amtrak | Other | Supplement (SUP) | 2015-09-01T04:00:00Z | 2015 | 9 | 2015-09-01T04:00:00Z | 2024-11-12T05:38:21Z | 1 | 0 | 0900006481c34b4d | ||
| FRA-2014-0124-0006 | FRA | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition FRA-2014-0124 | National Railroad Passenger Corporation - Letter | Other | Letter(s) | 2015-08-24T04:00:00Z | 2015 | 8 | 2015-08-24T04:00:00Z | 2024-11-12T05:41:20Z | 1 | 0 | 0900006481c3519d | ||
| FRA-2014-0124-0005 | FRA | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition FRA-2014-0124 | Theresa Impastato, Deputy Chief Safety Officer, National Railroad Passenger Corporation | Other | Statement | 2015-07-28T04:00:00Z | 2015 | 7 | 2015-07-28T04:00:00Z | 2024-11-12T05:41:00Z | 1 | 0 | 0900006481ba84ef | ||
| FRA-2014-0124-0004 | FRA | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition FRA-2014-0124 | Public Hearing | Notice | Public Meetings | 2015-06-15T04:00:00Z | 2015 | 6 | 2015-06-15T04:00:00Z | 2024-11-11T20:59:00Z | 2015-14632 | 1 | 0 | 0900006481b325f2 | |
| FRA-2014-0124-0003 | FRA | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition FRA-2014-0124 | Petitions for Waivers of Compliance | Notice | Waivers | 2015-02-25T05:00:00Z | 2015 | 2 | 2015-02-25T05:00:00Z | 2015-04-14T03:59:59Z | 2024-11-07T23:16:51Z | 2015-03763 | 1 | 0 | 0900006481a162b9 |
| FRA-2014-0124-0002 | FRA | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition FRA-2014-0124 | National Railroad Passenger Corporation (AMTRAK) - Waiver Petition | Other | Waiver | 2015-01-07T05:00:00Z | 2015 | 1 | 2015-01-07T05:00:00Z | 2024-11-11T20:56:58Z | 1 | 0 | 090000648197173c |
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;