documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2010-0032" and posted_year = 2022 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-2010-0032-0073 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | RRS-221025-014 MNR RFA to Its PTCSP Rev. 3.0-Approval-FRA-2010-0032 final signed | Other | Decision | 2022-11-08T05:00:00Z | 2022 | 11 | 2022-11-08T05:00:00Z | 2024-11-07T00:44:16Z | 1 | 0 | 09000064854998b2 | ||
| 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-0071 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | RRS-220926-009 Back 2 Back Functionality Requirements for ACSES II and ASES II-Several Dockets final_signed | Other | Letter(s) | 2022-09-29T04:00:00Z | 2022 | 9 | 2022-09-29T04:00:00Z | 2024-11-07T00:42:56Z | 1 | 0 | 0900006485382848 | ||
| FRA-2010-0032-0070 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | MNCW RFA to PTCSP v3.0 SEP 2022 | Other | Report | 2022-09-21T04:00:00Z | 2022 | 9 | 2022-09-21T04:00:00Z | 2022-09-21T19:40:51Z | 0 | 0 | 09000064853481e5 | ||
| FRA-2010-0032-0069 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | RRS-220513-002 Metro-North Commuter Railroads RFA to Its PTCSP Rev. 2.2 Approval-FRA-2010-0032_signed | Other | Decision | 2022-05-18T04:00:00Z | 2022 | 5 | 2022-05-18T04:00:00Z | 2024-11-12T23:41:06Z | 1 | 0 | 0900006485088896 | ||
| 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 |
| FRA-2010-0032-0067 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | RRS-220405-005 MNRs RFA to its PTCSP Approval -FRA-2010-0032_signed | Other | Decision | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-07T04:00:00Z | 2022-04-07T20:28:06Z | 0 | 0 | 0900006485000e4e | ||
| FRA-2010-0032-0066 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | MNCW RFA to PTCSP Rev 2.2 Apr 2022 | Other | Report | 2022-04-06T04:00:00Z | 2022 | 4 | 2022-04-06T04:00:00Z | 2022-04-06T12:35:54Z | 0 | 0 | 0900006484ffb4c5 | ||
| FRA-2010-0032-0065 | FRA | Metro North Railroad - Positive Train Control Plans FRA-2010-0032 | MNR RFA to PTCSP Revision 1.2 – Feb 2022 | Other | Report | 2022-02-23T05:00:00Z | 2022 | 2 | 2022-02-23T05:00:00Z | 2024-11-12T23:37:43Z | 1 | 0 | 0900006484f9e19a |
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;