documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2020-0059" and posted_year = 2021 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), 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-2020-0059-0024 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | FRA's 9.20.21 Response to AAR's 8.11.21 Request for Relief | Other | Agency Response | 2021-09-21T04:00:00Z | 2021 | 9 | 2021-09-21T04:00:00Z | 2021-09-21T17:46:53Z | 0 | 0 | 0900006484d9819a | ||
| FRA-2020-0059-0021 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | FRA-2020-0059 Waiver Ext. Request Ack. Letter 2021 | Other | Acknowledgement Letter/Receipt | 2021-08-26T04:00:00Z | 2021 | 8 | 2021-09-02T04:00:00Z | 2021-09-02T19:40:18Z | 0 | 0 | 0900006484caa00f | ||
| FRA-2020-0059-0020 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Petition for Waiver of Compliance | Notice | Waivers | 2021-08-25T04:00:00Z | 2021 | 8 | 2021-08-25T04:00:00Z | 2021-09-10T03:59:59Z | 2024-11-06T23:51:03Z | 2021-18241 | 1 | 0 | 0900006484ca350d |
| FRA-2020-0059-0019 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | FRA-2020-0059 Incoming Waiver Renewal Request August 2021 | Other | Waiver | 2021-08-13T04:00:00Z | 2021 | 8 | 2021-08-13T04:00:00Z | 2021-08-13T15:06:49Z | 0 | 0 | 0900006484c50bc7 | ||
| FRA-2020-0059-0017 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use by Location (01 16 2021) (2) | Other | Waiver | 2021-01-25T05:00:00Z | 2021 | 1 | 2021-01-25T05:00:00Z | 2021-01-25T16:45:04Z | 0 | 0 | 09000064849ff4c3 | ||
| FRA-2020-0059-0016 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use by Location (01 09 21) PDFA | Other | Action Memo or Letter | 2021-01-25T05:00:00Z | 2021 | 1 | 2021-01-25T05:00:00Z | 2021-01-25T16:37:40Z | 0 | 0 | 09000064849f8acf | ||
| FRA-2020-0059-0015 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use By Railroad - Summary Report for Week Ended 1/2/2021 | Other | Report | 2021-01-11T05:00:00Z | 2021 | 1 | 2021-01-11T05:00:00Z | 2021-01-11T15:23:05Z | 0 | 0 | 09000064849ea080 | ||
| FRA-2020-0059-0014 | FRA | The Association of American Railroads (AAR) FRA-2020-0059 | Waiver Use By Railroad - Summary Report for Week Ended 12/19/2020 | Other | Report | 2021-01-04T05:00:00Z | 2021 | 1 | 2021-01-04T05:00:00Z | 2021-01-04T16:23:42Z | 0 | 0 | 09000064849dace4 |
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;