documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2011-0104" 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-2011-0104-0071 | FRA | Central Florida Rail Corridor - Positive Train Control Development Plan FRA-2011-0104 | RRS-231025-004 CFRC's RFA to Its PTCSP and Certification as an I-ETMS Mixed System-FRA-2011-0104 final signed | Other | Decision | 2023-11-01T04:00:00Z | 2023 | 11 | 2023-11-01T04:00:00Z | 2024-11-12T06:20:24Z | 1 | 0 | 09000064861c331b | ||
| FRA-2011-0104-0070 | FRA | Central Florida Rail Corridor - Positive Train Control Development Plan FRA-2011-0104 | RRS-230816-016 Notification of Delay in a Decision Regarding the CFRC's PTCSP-FRA-2011-0104 | Other | Decision | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-22T04:00:00Z | 2024-11-11T21:31:57Z | 1 | 0 | 0900006485ed5e39 | ||
| FRA-2011-0104-0069 | FRA | Central Florida Rail Corridor - Positive Train Control Development Plan FRA-2011-0104 | RRS-230619-001 Notification of Delay in a Decision Regarding the CFRC PTCSP-FRA-2011-0104 final signed | Other | Decision | 2023-06-22T04:00:00Z | 2023 | 6 | 2023-06-22T04:00:00Z | 2024-11-07T01:04:43Z | 1 | 0 | 0900006485bb6eb9 | ||
| FRA-2011-0104-0068 | FRA | Central Florida Rail Corridor - Positive Train Control Development Plan FRA-2011-0104 | RRS-230424-020 Notification of Delay in a Decision Regarding the CFRC PTCSP-FRA-2011-0104 final signed | Other | Decision | 2023-04-25T04:00:00Z | 2023 | 4 | 2023-04-25T04:00:00Z | 2024-11-12T22:51:04Z | 1 | 0 | 0900006485982c4b | ||
| FRA-2011-0104-0067 | FRA | Central Florida Rail Corridor - Positive Train Control Development Plan FRA-2011-0104 | 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-12T23:53:28Z | 2023-07400 | 1 | 0 | 090000648591b5f9 |
| FRA-2011-0104-0066 | FRA | Central Florida Rail Corridor - Positive Train Control Development Plan FRA-2011-0104 | Joint I-ETMS Non-Vital Overlay RFA to PTCSP March 2023 | Other | Report | 2023-03-16T04:00:00Z | 2023 | 3 | 2023-03-16T04:00:00Z | 2023-03-16T12:12:24Z | 0 | 0 | 09000064857b8587 |
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;