documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-2020-0059" and posted_year = 2020 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), 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-2020-0059-0013 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use By Railroad - Summary Report for Week Ended 12/12/2020 | Other | Waiver | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T05:00:00Z | 2020-12-21T15:26:09Z | 0 | 0 | 09000064849af6b5 | ||
| FRA-2020-0059-0012 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use By Railroad - Summary Report for Week Ended 12/5/2020 | Other | Additional Information | 2020-12-14T05:00:00Z | 2020 | 12 | 2020-12-14T05:00:00Z | 2020-12-14T14:18:15Z | 0 | 0 | 090000648499ba9a | ||
| FRA-2020-0059-0011 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use By Railroad - Summary Report for Week Ended 11/28/2020 | Other | Waiver | 2020-12-08T05:00:00Z | 2020 | 12 | 2020-12-08T05:00:00Z | 2020-12-08T15:50:33Z | 0 | 0 | 09000064849874c1 | ||
| FRA-2020-0059-0010 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use By Railroad - Summary Report for Week Ended 11/21/2020 | Other | Waiver | 2020-12-01T05:00:00Z | 2020 | 12 | 2020-12-01T05:00:00Z | 2020-12-01T16:19:48Z | 0 | 0 | 090000648497f08f | ||
| FRA-2020-0059-0009 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use By Railroad - Summary Report for Week Ended 11/14/2020 | Other | Waiver | 2020-11-27T05:00:00Z | 2020 | 11 | 2020-11-27T05:00:00Z | 2020-11-27T16:38:48Z | 0 | 0 | 09000064849720c3 | ||
| FRA-2020-0059-0008 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Kansas City Southern (KCS) Q3 2020 PTC Progress Report | Other | Report | 2020-11-18T05:00:00Z | 2020 | 11 | 2020-11-18T05:00:00Z | 2020-11-18T16:20:52Z | 0 | 0 | 09000064849669bc | ||
| FRA-2020-0059-0006 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use By Railroad - Summary Report for Week Ended 10/31/2020 | Other | Report | 2020-11-10T05:00:00Z | 2020 | 11 | 2020-11-10T05:00:00Z | 2020-11-10T19:23:11Z | 0 | 0 | 090000648495653e | ||
| FRA-2020-0059-0005 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | KCS Plan to Utilizing 240.127(c)(5) Waiver | Other | Waiver | 2020-10-21T04:00:00Z | 2020 | 10 | 2020-10-21T04:00:00Z | 2020-10-21T15:41:12Z | 0 | 0 | 0900006484917877 | ||
| FRA-2020-0059-0004 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | FRA's Sept. 18, 2020, Response to AAR's Request for Relief | Other | Response(s) | 2020-09-21T04:00:00Z | 2020 | 9 | 2020-09-21T04:00:00Z | 2020-09-21T14:00:05Z | 0 | 0 | 090000648486ae07 | ||
| FRA-2020-0059-0002 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Petition for Waiver of Compliance | Notice | Waivers | 2020-08-05T04:00:00Z | 2020 | 8 | 2020-08-05T04:00:00Z | 2024-11-12T23:24:06Z | 2020-17029 | 1 | 0 | 09000064847d7265 | |
| FRA-2020-0059-0001 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Incoming AAR Waiver Petition - AAR - Social Distancing Relief July 2020 | Other | Waiver | 2020-07-14T04:00:00Z | 2020 | 7 | 2020-07-14T04:00:00Z | 2024-11-12T23:23:01Z | 1 | 0 | 090000648474b503 |
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;