documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2013-0128" 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-2013-0128-0014 | FRA | National Railroad Passenger Corporation - Waiver Petition FRA-2013-0128 | 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:18:52Z | 0 | 0 | 0900006481cea004 | ||
| FRA-2013-0128-0013 | FRA | National Railroad Passenger Corporation - Waiver Petition FRA-2013-0128 | Amtrak - Incoming Clarification Letter | Other | Letter(s) | 2015-10-06T04:00:00Z | 2015 | 10 | 2015-10-06T04:00:00Z | 2015-10-06T17:40:51Z | 0 | 0 | 0900006481caf2fd | ||
| FRA-2013-0128-0012 | FRA | National Railroad Passenger Corporation - Waiver Petition FRA-2013-0128 | Amtrak - Letter | Other | Letter(s) | 2015-09-01T04:00:00Z | 2015 | 9 | 2015-09-01T04:00:00Z | 2015-09-01T19:13:06Z | 0 | 0 | 0900006481c34b4b | ||
| FRA-2013-0128-0011 | FRA | National Railroad Passenger Corporation - Waiver Petition FRA-2013-0128 | National Railroad Passenger Corporation - Letter | Other | Letter(s) | 2015-08-24T04:00:00Z | 2015 | 8 | 2015-08-24T04:00:00Z | 2015-08-24T17:13:51Z | 0 | 0 | 0900006481c2b21b | ||
| FRA-2013-0128-0010 | FRA | National Railroad Passenger Corporation - Waiver Petition FRA-2013-0128 | U.S. DOT/FRA - Transcript of Public Hearing on July 22, 2015 | Other | Transcript(s) | 2015-07-30T04:00:00Z | 2015 | 7 | 2015-07-30T04:00:00Z | 2024-11-12T05:44:09Z | 1 | 0 | 0900006481baef5d | ||
| FRA-2013-0128-0009 | FRA | National Railroad Passenger Corporation - Waiver Petition FRA-2013-0128 | Theresa Impastato, Deputy Chief Safety Officer National Railroad Passenger Corporation - Prepared Statement | Other | Statement | 2015-07-28T04:00:00Z | 2015 | 7 | 2015-07-28T04:00:00Z | 2015-07-28T12:45:38Z | 0 | 0 | 0900006481ba84cc | ||
| FRA-2013-0128-0008 | FRA | National Railroad Passenger Corporation - Waiver Petition FRA-2013-0128 | Public Hearing | Notice | Public Meetings | 2015-06-15T04:00:00Z | 2015 | 6 | 2015-06-15T04:00:00Z | 2024-11-11T20:58:26Z | 2015-14632 | 1 | 0 | 0900006481b3656d | |
| FRA-2013-0128-0007 | FRA | National Railroad Passenger Corporation - Waiver Petition FRA-2013-0128 | 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:54Z | 2015-03763 | 1 | 0 | 0900006481a165f6 |
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;