documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2014-0014" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-0014-0010 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | FRA-2014-0014 Withdrawal Request Sept 2024 | Other | Withdrawal | 2024-10-11T04:00:00Z | 2024 | 10 | 2024-10-11T04:00:00Z | 2024-10-11T16:30:51Z | 0 | 0 | 09000064867bcd9d | ||
| FRA-2014-0014-0009 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | Petition for Extension of Waiver of Compliance | Notice | Request for Comments | 2024-09-19T04:00:00Z | 2024 | 9 | 2024-09-19T04:00:00Z | 2024-11-12T22:43:41Z | 2024-21393 | 1 | 0 | 090000648674caa3 | |
| FRA-2014-0014-0008 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | FRA-2014-0014 Incoming Waiver Extension Petition 2024 | Other | Waiver | 2024-06-13T04:00:00Z | 2024 | 6 | 2024-06-13T04:00:00Z | 2024-06-13T16:31:37Z | 0 | 0 | 09000064865ac87a | ||
| FRA-2014-0014-0007 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | U.S. DOT/FRA- Texas State RR Decision Letter 2019 | Other | Decision | 2019-05-31T04:00:00Z | 2019 | 5 | 2019-05-31T04:00:00Z | 2019-05-31T15:40:27Z | 0 | 0 | 0900006483cd9531 | ||
| FRA-2014-0014-0006 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | U.S.DOT/FRA-Waiver Acknowledgement Letter 2018 | Other | Acknowledgement Letter/Receipt | 2018-10-16T04:00:00Z | 2018 | 10 | 2018-10-16T04:00:00Z | 2018-10-16T20:04:21Z | 0 | 0 | 09000064837e1b86 | ||
| FRA-2014-0014-0005 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | Incoming Request 2018 | Other | Request | 2018-10-05T04:00:00Z | 2018 | 10 | 2018-10-05T04:00:00Z | 2018-10-05T18:26:12Z | 0 | 0 | 090000648379a0cc | ||
| FRA-2014-0014-0003 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | Petitions for Waivers of Compliance | Notice | Notice of Receipt of Petition | 2014-03-28T04:00:00Z | 2014 | 3 | 2014-03-28T04:00:00Z | 2014-05-13T03:59:59Z | 2024-11-07T23:06:21Z | 2014-06847 | 1 | 0 | 090000648168a36b |
| FRA-2014-0014-0002 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2014-01-30T05:00:00Z | 2014 | 1 | 2014-01-30T05:00:00Z | 2024-11-07T23:04:15Z | 1 | 0 | 090000648152fa15 | ||
| FRA-2014-0014-0001 | FRA | Texas State Railroad - Waiver Petition FRA-2014-0014 | The TX State Railroad Rusk, Palestine & Pacific Railway - Waiver Request | Other | Waiver | 2014-01-30T05:00:00Z | 2014 | 1 | 2014-01-30T05:00:00Z | 2024-11-07T23:03:15Z | 1 | 0 | 090000648152c982 |
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;