documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2010-0036" 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-0036-0111 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | Request to Amend Positive Train Control Safety Plan: Southeastern Pennsylvania Transportation Authority | Notice | Notice of Availability | 2023-11-13T05:00:00Z | 2023 | 11 | 2023-11-13T05:00:00Z | 2023-12-05T04:59:59Z | 2024-11-12T06:22:12Z | 2023-24974 | 1 | 0 | 090000648625ba96 |
| FRA-2010-0036-0109 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | Request to Amend Positive Train Control System: Southeastern Pennsylvania Transportation Authority | Notice | Notice of Availability | 2023-10-31T04:00:00Z | 2023 | 10 | 2023-10-31T04:00:00Z | 2023-11-21T04:59:59Z | 2024-11-12T06:20:26Z | 2023-24013 | 1 | 0 | 090000648619fce2 |
| FRA-2010-0036-0107 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | Positive Train Control System: Southeastern Pennsylvania Transportation Authority | Notice | Notice of Availability | 2023-06-27T04:00:00Z | 2023 | 6 | 2023-06-27T04:00:00Z | 2023-07-18T03:59:59Z | 2024-11-12T05:50:17Z | 2023-13647 | 1 | 0 | 0900006485bfd0c9 |
| FRA-2010-0036-0103 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | Positive Train Control Implementation Plan: Southeastern Pennsylvania Transportation Authority | Notice | Notice of Availability | 2023-03-16T04:00:00Z | 2023 | 3 | 2023-03-16T04:00:00Z | 2023-05-02T03:59:59Z | 2024-11-07T00:49:19Z | 2023-05370 | 1 | 0 | 09000064857b8ed8 |
| FRA-2010-0036-0099 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | Request to Amend Positive Train Control Implementation Plan, Including a Request for Approval of a Discontinuance or Modification of a Railroad Signal System: Southeastern Pennsylvania Transportation Authority | Notice | Request for Comments | 2022-09-22T04:00:00Z | 2022 | 9 | 2022-09-22T04:00:00Z | 2022-11-08T04:59:59Z | 2024-11-07T01:01:59Z | 2022-20509 | 1 | 0 | 090000648534f53c |
| FRA-2010-0036-0055 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | Southeastern Pennsylvania Transportation Authority's Request: Positive Train Control Safety Plan Approval and System Certification | Notice | Notice of Availability | 2016-03-02T05:00:00Z | 2016 | 3 | 2016-03-02T05:00:00Z | 2016-04-02T03:59:59Z | 2024-11-12T06:05:16Z | 2016-04580 | 1 | 0 | 0900006481e98e24 |
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;