documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2014-0098" and posted_year = 2020 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-2014-0098-0043 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | Sonoma-Marin Area Rail Transit’s Request for Amendment to Its Positive Train Control Implementation Plan - Approval | Other | Letter(s) | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T05:00:00Z | 2020-12-21T16:14:19Z | 0 | 0 | 09000064849a8123 | ||
| FRA-2014-0098-0044 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | RRS-201124-011 SMART RFA to its PTCIP A06 RECOMMENDED APPROVAL | Other | Decision | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T05:00:00Z | 2024-11-12T23:26:58Z | 1 | 0 | 09000064849b06fa | ||
| FRA-2014-0098-0042 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | RRS-201201-002 SMART PTCSP CONDITIONAL CERTIFICATION AND APPROVAL | Other | Letter(s) | 2020-12-07T05:00:00Z | 2020 | 12 | 2020-12-07T05:00:00Z | 2020-12-07T18:07:30Z | 0 | 0 | 090000648498ab27 | ||
| FRA-2014-0098-0041 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | Sonoma-Marin Area Rail Transit (SMART) Q3 2020 PTC Progress Report | Other | Report | 2020-11-17T05:00:00Z | 2020 | 11 | 2020-11-17T05:00:00Z | 2020-11-17T19:20:07Z | 0 | 0 | 0900006484964be3 | ||
| FRA-2014-0098-0040 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | Sonoma-Marin Area Rail Transit (SMART) Q2 2020 PTC Progress Report | Other | Report | 2020-08-13T04:00:00Z | 2020 | 8 | 2020-08-13T04:00:00Z | 2020-08-13T14:49:45Z | 0 | 0 | 09000064847fc308 | ||
| FRA-2014-0098-0039 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | RRS-200710-005 SMART RFA to its PTCIP A05 APPROVAL LETTER | Other | Decision | 2020-07-24T04:00:00Z | 2020 | 7 | 2020-07-24T04:00:00Z | 2024-11-06T23:38:34Z | 1 | 0 | 09000064847a43a8 | ||
| FRA-2014-0098-0038 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | Sonoma-Marin Area Rail Transit (SMART) Q1 2020 PTC Progress Report | Other | Report | 2020-05-18T04:00:00Z | 2020 | 5 | 2020-05-18T04:00:00Z | 2020-05-18T14:31:57Z | 0 | 0 | 0900006484632c3a | ||
| FRA-2014-0098-0037 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | RRS-200430-005 NOTICE OF DELAY SMART PTCSP | Other | Letter(s) | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T04:00:00Z | 2024-11-12T23:19:23Z | 1 | 0 | 0900006484560997 | ||
| FRA-2014-0098-0036 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | Sonoma-Marin Area Rail Transit (SMART) 2019 Annual PTC Progress Report | Other | Report | 2020-04-03T04:00:00Z | 2020 | 4 | 2020-04-03T04:00:00Z | 2020-04-03T16:07:02Z | 0 | 0 | 0900006484486298 | ||
| FRA-2014-0098-0035 | FRA | Sonoma-Marin Area Rail Transit- Positive Train Control Plans FRA-2014-0098 | Sonoma-Marin Area Rail Transit (SMART) Q4 2019 PTC Progress Report | Other | Report | 2020-02-26T05:00:00Z | 2020 | 2 | 2020-02-26T05:00:00Z | 2020-02-26T16:26:58Z | 0 | 0 | 09000064843b67a0 |
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;