documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-2010-0052" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_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-0052-0042 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | Utah Transit Authority Front Runner (UFRC) Q3 2019 PTC Progress Report | Other | Report | 2019-11-26T05:00:00Z | 2019 | 11 | 2019-11-26T05:00:00Z | 2019-11-26T15:49:58Z | 0 | 0 | 09000064841b8938 | ||
| FRA-2010-0052-0041 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | Utah Transit Authority Front Runner (UFRC) Q2 2019 PTC Progress Report | Other | Report | 2019-09-11T04:00:00Z | 2019 | 9 | 2019-09-11T04:00:00Z | 2019-09-11T15:52:42Z | 0 | 0 | 0900006483f38a8e | ||
| FRA-2010-0052-0040 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | U.S.DOT/FRA - Decision | Other | Decision | 2019-08-12T04:00:00Z | 2019 | 8 | 2019-08-12T04:00:00Z | 2024-11-12T23:06:45Z | 1 | 0 | 0900006483e361a3 | ||
| FRA-2010-0052-0039 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | Utah Transit Authority Front Runner (UFRC) Q1 2019 PTC Progress Report | Other | Report | 2019-05-30T04:00:00Z | 2019 | 5 | 2019-05-30T04:00:00Z | 2019-05-30T14:04:30Z | 0 | 0 | 0900006483cd6b2a | ||
| FRA-2010-0052-0038 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | Utah Transit Authority Front Runner (UFRC) 2018 Annual PTC Progress Report | Other | Report | 2019-04-11T04:00:00Z | 2019 | 4 | 2019-04-11T04:00:00Z | 2019-04-11T14:12:48Z | 0 | 0 | 0900006483b8340a | ||
| FRA-2010-0052-0037 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | Utah Transit Authority Front Runner (UFRC) Q4 2018 PTC Progress Report | Other | Report | 2019-02-15T05:00:00Z | 2019 | 2 | 2019-02-15T05:00:00Z | 2019-02-15T16:53:01Z | 0 | 0 | 0900006483a7c750 | ||
| FRA-2010-0052-0033 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | UFRC Request for Amendment to the PTC Implementation Plan (PTCIP) Rev 7.4 | Other | Report | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T05:00:00Z | 2019-02-13T18:52:26Z | 0 | 0 | 0900006483a6a075 | ||
| FRA-2010-0052-0036 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | UFRC Request for an Alternate Schedule and Sequence Supplement - RSD Daily Operating Bulletin | Other | Report | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T05:00:00Z | 2019-02-13T18:52:29Z | 0 | 0 | 0900006483a6a1f4 | ||
| FRA-2010-0052-0035 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | UFRC Request for an Alternate Schedule and Sequence | Other | Report | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T05:00:00Z | 2019-02-13T18:52:28Z | 0 | 0 | 0900006483a6a1f5 | ||
| FRA-2010-0052-0034 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | URFC Revised PTC Implementation Plan (PTCIP) Rev 7.45 | Other | Report | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T05:00:00Z | 2019-02-13T18:52:27Z | 0 | 0 | 0900006483a6a1f6 | ||
| FRA-2010-0052-0032 | FRA | Utah Transit Authority Front Runner - Positive Train Control Plans FRA-2010-0052 | U.S. DOT/FRA - Decision | Other | Decision | 2019-02-06T05:00:00Z | 2019 | 2 | 2019-02-06T05:00:00Z | 2024-11-12T22:54:47Z | 1 | 0 | 0900006483a4b5be |
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;