documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2018-0012" and posted_year = 2023 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-2018-0012-0032 | FRA | TEXRail- Positive Train Control Plans FRA-2018-0012 | RRS-231127-010 TEXRail and Silver Line Joint Test Request -I-ETMS v. 1.0 Conditional Aproval-FRA-2018-0012 final signed | Other | Decision | 2023-11-30T05:00:00Z | 2023 | 11 | 2023-11-30T05:00:00Z | 2024-11-12T06:23:35Z | 1 | 0 | 09000064862c6e5d | ||
| FRA-2018-0012-0031 | FRA | TEXRail- Positive Train Control Plans FRA-2018-0012 | RRS-231116-007 TEXRail's RFA to Its PTCIP Approval-FRA-2018-0012 final signed | Other | Decision | 2023-11-30T05:00:00Z | 2023 | 11 | 2023-11-30T05:00:00Z | 2024-11-12T06:23:34Z | 1 | 0 | 09000064862c6e5b | ||
| FRA-2018-0012-0030 | FRA | TEXRail- Positive Train Control Plans FRA-2018-0012 | Joint Request for Approval to Conduct Positive Train Control Field Testing: TEXRail and the Silver Line | Notice | Notice of Availability | 2023-09-11T04:00:00Z | 2023 | 9 | 2023-09-11T04:00:00Z | 2023-11-14T04:59:59Z | 2023-09-11T13:37:36Z | 2023-19519 | 0 | 0 | 0900006485f7362c |
| FRA-2018-0012-0029 | FRA | TEXRail- Positive Train Control Plans FRA-2018-0012 | TEXR SLVR Joint Test Request – August 2023 | Other | Report | 2023-09-06T04:00:00Z | 2023 | 9 | 2023-09-06T04:00:00Z | 2023-09-06T17:55:23Z | 0 | 0 | 0900006485f4c25c | ||
| FRA-2018-0012-0028 | FRA | TEXRail- Positive Train Control Plans FRA-2018-0012 | RRS-230427-016 TRE CFRC and TEXRails Joint Request to Amend Their PTCSPs Approval-FRA-2010-0044-FRA-2010-0104 and FRA-2018-0012 signed | Other | Decision | 2023-05-01T04:00:00Z | 2023 | 5 | 2023-05-01T04:00:00Z | 2024-11-12T05:51:18Z | 1 | 0 | 09000064859b380f | ||
| FRA-2018-0012-0027 | FRA | TEXRail- Positive Train Control Plans FRA-2018-0012 | Railroads' Joint Request To Amend Their Positive Train Control Safety Plans and Positive Train Control Systems | Notice | Notice of Availability | 2023-04-10T04:00:00Z | 2023 | 4 | 2023-04-10T04:00:00Z | 2023-05-02T03:59:59Z | 2024-11-12T23:53:11Z | 2023-07400 | 1 | 0 | 090000648591c164 |
| FRA-2018-0012-0026 | FRA | TEXRail- Positive Train Control Plans FRA-2018-0012 | Joint I-ETMS Non-Vital Overlay RFA to PTCSP March 2023 | Other | Report | 2023-03-16T04:00:00Z | 2023 | 3 | 2023-03-16T04:00:00Z | 2023-03-16T12:25:55Z | 0 | 0 | 09000064857ae428 |
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;