documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2010-0060" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-0060-0118 | FRA | Norfolk Southern Railroad - Positive Train Control Plans FRA-2010-0060 | U.S. DOT/FRA - Response to Norfolk Southern Railway Company's Operations on New Jersey Transits Main Lines | Other | Response(s) | 2020-12-14T05:00:00Z | 2020 | 12 | 2020-12-14T05:00:00Z | 2024-11-06T23:43:18Z | 1 | 0 | 090000648499ceb2 | ||
| FRA-2010-0060-0117 | FRA | Norfolk Southern Railroad - Positive Train Control Plans FRA-2010-0060 | Norfolk Southern Railroad (NS) Q3 2020 PTC Progress Report | Other | Report | 2020-11-17T05:00:00Z | 2020 | 11 | 2020-11-17T05:00:00Z | 2020-11-17T19:10:06Z | 0 | 0 | 09000064849648ff | ||
| FRA-2010-0060-0116 | FRA | Norfolk Southern Railroad - Positive Train Control Plans FRA-2010-0060 | Norfolk Southern Railroad (NS) Q2 2020 PTC Progress Report | Other | Report | 2020-09-21T04:00:00Z | 2020 | 9 | 2020-09-21T04:00:00Z | 2020-09-21T16:55:06Z | 0 | 0 | 090000648486bea0 | ||
| FRA-2010-0060-0115 | FRA | Norfolk Southern Railroad - Positive Train Control Plans FRA-2010-0060 | U.S. DOT/FRA - Approval Letter | Other | Decision | 2020-06-25T04:00:00Z | 2020 | 6 | 2020-06-25T04:00:00Z | 2024-11-06T23:38:12Z | 1 | 0 | 090000648470ddae | ||
| FRA-2010-0060-0114 | FRA | Norfolk Southern Railroad - Positive Train Control Plans FRA-2010-0060 | Norfolk Southern Railroad (NS) Q1 2020 PTC Progress Report | Other | Report | 2020-05-18T04:00:00Z | 2020 | 5 | 2020-05-18T04:00:00Z | 2020-05-18T14:18:05Z | 0 | 0 | 0900006484632312 | ||
| FRA-2010-0060-0113 | FRA | Norfolk Southern Railroad - Positive Train Control Plans FRA-2010-0060 | Norfolk Southern Railroad (NS) 2019 Annual PTC Progress Report | Other | Report | 2020-04-03T04:00:00Z | 2020 | 4 | 2020-04-03T04:00:00Z | 2020-04-03T15:43:16Z | 0 | 0 | 0900006484485cbc | ||
| FRA-2010-0060-0112 | FRA | Norfolk Southern Railroad - Positive Train Control Plans FRA-2010-0060 | Norfolk Southern Railroad (NS) Q4 2019 PTC Progress Report | Other | Report | 2020-02-26T05:00:00Z | 2020 | 2 | 2020-02-26T05:00:00Z | 2020-02-26T16:10:18Z | 0 | 0 | 09000064843b6a0d |
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;