documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2010-0044" and document_type = "Notice" 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-2010-0044-0077 | FRA | Trinity Railway Express - Positive Train Control Plans FRA-2010-0044 | Request for Amendment: Trinity Railway Express; Positive Train Control Safety Plan and Positive Train Control System | Notice | Request for Comments | 2024-12-11T05:00:00Z | 2024 | 12 | 2024-12-11T05:00:00Z | 2025-02-11T04:59:59Z | 2024-12-11T14:56:26Z | 2024-29084 | 1 | 0 | 0900006486861cb7 |
| FRA-2010-0044-0073 | FRA | Trinity Railway Express - Positive Train Control Plans FRA-2010-0044 | Positive Train Control Network: Trinity Railway Express's Request for Approval to Begin Field Testing | Notice | Notice of Availability | 2023-11-09T05:00:00Z | 2023 | 11 | 2023-11-09T05:00:00Z | 2024-01-09T04:59:59Z | 2024-11-12T06:20:52Z | 2023-24844 | 1 | 0 | 0900006486231c5d |
| FRA-2010-0044-0072 | FRA | Trinity Railway Express - Positive Train Control Plans FRA-2010-0044 | Joint Request for Approval to Conduct Positive Train Control Field Testing: Trinity Railway Express 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:38:18Z | 2023-19520 | 0 | 0 | 0900006485f7367f |
| FRA-2010-0044-0065 | FRA | Trinity Railway Express - Positive Train Control Plans FRA-2010-0044 | 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-07T00:49:24Z | 2023-07400 | 1 | 0 | 090000648591b871 |
| FRA-2010-0044-0064 | FRA | Trinity Railway Express - Positive Train Control Plans FRA-2010-0044 | Request to Amend Its Positive Train Control System: Trinity Railway Express | Notice | Notice of Availability | 2023-03-16T04:00:00Z | 2023 | 3 | 2023-03-16T04:00:00Z | 2023-04-06T03:59:59Z | 2024-11-07T00:49:19Z | 2023-05349 | 1 | 0 | 09000064857b8e4d |
| FRA-2010-0044-0058 | FRA | Trinity Railway Express - Positive Train Control Plans FRA-2010-0044 | Railroads Requests to Amend Their Positive Train Control Safety Plans and Positive Train Control Systems | Notice | Request for Comments | 2021-10-01T04:00:00Z | 2021 | 10 | 2021-10-01T04:00:00Z | 2021-10-22T03:59:59Z | 2024-11-07T00:31:24Z | 2021-21337 | 1 | 0 | 0900006484db610a |
| FRA-2010-0044-0055 | FRA | Trinity Railway Express - Positive Train Control Plans FRA-2010-0044 | Railroads' Requests to Amend Their Positive Train Control Safety Plans and Positive Train Control Systems | Notice | Request for Comments | 2021-06-11T04:00:00Z | 2021 | 6 | 2021-06-11T04:00:00Z | 2021-06-22T03:59:59Z | 2024-11-12T23:31:39Z | 2021-12294 | 1 | 0 | 0900006484b6bd1e |
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;