documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2010-0032" 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-0032-0094 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | Request for Amendment: Metro-North Railroad, Positive Train Control Safety Plan and Positive Train Control System | Notice | Request for Comments | 2025-05-12T00:00:00Z | 2025 | 5 | 2025-05-12T00:00:00Z | 2025-06-03T03:59:59Z | 2025-05-21T22:33:18Z | 2025-08260 | 0 | 0 | 09000064b8d3d2b1 |
| FRA-2010-0032-0090 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | Request for Amendment: Metro-North Railroad; Positive Train Control Safety Plan and Positive Train Control System | Notice | Request for Comments | 2024-05-31T04:00:00Z | 2024 | 5 | 2024-05-31T04:00:00Z | 2024-06-21T03:59:59Z | 2024-11-12T22:34:50Z | 2024-11907 | 1 | 0 | 090000648658e1bd |
| FRA-2010-0032-0086 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | Request to Amend Positive Train Control Safety Plan and Positive Train Control System: Metro-North Commuter Railroad | Notice | Notice of Availability | 2023-11-17T05:00:00Z | 2023 | 11 | 2023-11-17T05:00:00Z | 2023-12-08T04:59:59Z | 2024-11-12T06:22:22Z | 2023-25420 | 1 | 0 | 090000648628cbce |
| FRA-2010-0032-0081 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | Request to Amend Positive Train Control Safety Plan and Positive Train Control System: Metro-North Railroad | Notice | Notice of Availability | 2023-05-17T04:00:00Z | 2023 | 5 | 2023-05-17T04:00:00Z | 2023-06-07T03:59:59Z | 2024-11-07T01:34:09Z | 2023-10475 | 1 | 0 | 0900006485a1615a |
| FRA-2010-0032-0078 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | Metro-North Railroad's Request To Amend Its Positive Train Control Safety Plan and Positive Train Control System | Notice | Notice of Availability | 2023-04-19T04:00:00Z | 2023 | 4 | 2023-04-19T04:00:00Z | 2023-05-10T03:59:59Z | 2024-11-12T23:53:18Z | 2023-08282 | 1 | 0 | 090000648595d4b4 |
| FRA-2010-0032-0076 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | Metro-North Railroad's Request to Amend Its Positive Train Control System | Notice | Notice of Availability | 2023-04-06T04:00:00Z | 2023 | 4 | 2023-04-06T04:00:00Z | 2023-04-27T03:59:59Z | 2024-11-12T23:53:49Z | 2023-07124 | 1 | 0 | 09000064858f2120 |
| FRA-2010-0032-0072 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | Positive Train Control Safety Plan and Positive Train Control System: Metro-North Railroad | Notice | Request for Comments | 2022-10-03T04:00:00Z | 2022 | 10 | 2022-10-03T04:00:00Z | 2022-10-25T03:59:59Z | 2024-11-07T00:42:53Z | 2022-21378 | 1 | 0 | 090000648539a7cc |
| FRA-2010-0032-0068 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | Positive Train Control Safety Plan and Positive Train Control System: Metro-North Commuter Railroad | Notice | Notice of Availability | 2022-04-15T04:00:00Z | 2022 | 4 | 2022-04-15T04:00:00Z | 2022-05-06T03:59:59Z | 2024-11-07T00:37:55Z | 2022-08132 | 1 | 0 | 090000648501cbee |
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;