documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-2010-0036" and posted_year = 2023 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-0036-0113 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | RRS-231212-013 SEPTA RFA to Its PTC System OBC Main Rev. 14 R2-FRA-2010-0036 final signed | Other | Decision | 2023-12-18T05:00:00Z | 2023 | 12 | 2023-12-18T05:00:00Z | 2024-11-12T06:24:28Z | 1 | 0 | 09000064863449df | ||
| FRA-2010-0036-0112 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | RRS-231120-031 SEPTA RFA to Its PTC System Temporary Outage for Maintenance or Upgrade Purposes Conditional Approval-FRA-2010-0036 final signed | Other | Decision | 2023-11-30T05:00:00Z | 2023 | 11 | 2023-11-30T05:00:00Z | 2024-11-12T06:23:34Z | 1 | 0 | 09000064862c6e8b | ||
| 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-0110 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | SEPTA RFA to PTCSP – November 2023 | Other | Report | 2023-11-06T05:00:00Z | 2023 | 11 | 2023-11-06T05:00:00Z | 2023-11-06T14:40:37Z | 0 | 0 | 0900006486209e3a | ||
| 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-0108 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | SEPTA Request for Temporary Outage – October 2023 | Other | Report | 2023-10-26T04:00:00Z | 2023 | 10 | 2023-10-26T04:00:00Z | 2023-10-26T18:05:46Z | 0 | 0 | 0900006486144981 | ||
| 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-0106 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | SEPTA Request for Temporary Outage – June 2023 | Other | Request | 2023-06-21T04:00:00Z | 2023 | 6 | 2023-06-21T04:00:00Z | 2023-06-21T18:40:35Z | 0 | 0 | 0900006485b98268 | ||
| FRA-2010-0036-0105 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | RRS-230516-006 SEPTA RFA to Its PTCIP WEU Variance 2 Approval-FRA-2010-0036 final signed | Other | Decision | 2023-05-25T04:00:00Z | 2023 | 5 | 2023-05-25T04:00:00Z | 2024-11-07T01:14:58Z | 1 | 0 | 0900006485a5f194 | ||
| 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-0102 | FRA | Southeast Pennsylvania Transit Authority - Positive Train Control Plans FRA-2010-0036 | SEPTA RFA to PTCIP – Feb 2023 | Other | Report | 2023-03-08T05:00:00Z | 2023 | 3 | 2023-03-08T05:00:00Z | 2023-03-08T19:09:13Z | 0 | 0 | 0900006485778c6e |
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;