documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2010-0049" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-0049-0069 | FRA | North County Transit District - Positive Train Control Plans FRA-2010-0049 | North County Transit District's Request for Positive Train Control Safety Plan Approval and System Certification | Notice | Request for Comments | 2021-11-04T04:00:00Z | 2021 | 11 | 2021-11-04T04:00:00Z | 2022-01-04T04:59:59Z | 2024-11-07T00:34:04Z | 2021-23997 | 1 | 0 | 0900006484e17f15 |
| FRA-2010-0049-0068 | FRA | North County Transit District - Positive Train Control Plans FRA-2010-0049 | RFA for NCTD PTCSP 3.0 Sept 30 2021 | Other | Report | 2021-10-05T04:00:00Z | 2021 | 10 | 2021-10-05T04:00:00Z | 2021-10-05T13:04:31Z | 0 | 0 | 0900006484dba629 | ||
| FRA-2010-0049-0067 | FRA | North County Transit District - Positive Train Control Plans FRA-2010-0049 | RRS-210623-001 Three Host Railroads Joint Request to Amend Their Positive Train Control Safety Plans Approval | Other | Decision | 2021-07-09T04:00:00Z | 2021 | 7 | 2021-07-09T04:00:00Z | 2024-11-12T23:32:53Z | 1 | 0 | 0900006484be0bd2 | ||
| FRA-2010-0049-0065 | FRA | North County Transit District - Positive Train Control Plans FRA-2010-0049 | ..... | Other | Report | 2021-06-16T04:00:00Z | 2021 | 6 | 2021-06-16T04:00:00Z | 2021-06-24T15:36:21Z | 0 | 0 | 0900006484b739aa | ||
| FRA-2010-0049-0066 | FRA | North County Transit District - Positive Train Control Plans FRA-2010-0049 | SDNX RFA to PTCIP and Revised PTCIP Version 4 - January 2016 | Other | Report | 2021-06-16T04:00:00Z | 2021 | 6 | 2021-06-24T04:00:00Z | 2021-07-06T13:14:17Z | 0 | 0 | 0900006484b8c7c5 | ||
| FRA-2010-0049-0064 | FRA | North County Transit District - Positive Train Control Plans FRA-2010-0049 | Railroads' Requests to Amend Their Positive Train Control Safety Plans and Positive Train Control Systems | Notice | Request for Comments | 2021-06-11T04:00:00Z | 2021 | 6 | 2021-06-11T04:00:00Z | 2021-06-22T03:59:59Z | 2024-11-12T23:31:26Z | 1 | 0 | 0900006484b74f94 | |
| FRA-2010-0049-0063 | FRA | North County Transit District - Positive Train Control Plans FRA-2010-0049 | Joint RFA to Railroads’ I-ETMS PTCSPs, Filed 5-26-2021 | Other | Report | 2021-06-01T04:00:00Z | 2021 | 6 | 2021-06-01T04:00:00Z | 2021-06-01T19:28:08Z | 0 | 0 | 0900006484b48940 |
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;